Skip to content

Instantly share code, notes, and snippets.

@mnemonic47
Created April 15, 2020 09:08
Show Gist options
  • Select an option

  • Save mnemonic47/23aa52c7bec943568035d9622185c37b to your computer and use it in GitHub Desktop.

Select an option

Save mnemonic47/23aa52c7bec943568035d9622185c37b to your computer and use it in GitHub Desktop.
iframe example
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
height: auto;
}
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
</style>
</head>
<body>
<div class="row">
<div class="column">
<h4>Sida 1</h4>
<iframe src="https://www.google.se"></iframe>
</div>
<div class="column">
<h4>Sida 2</h4>
<iframe src="https://www.google.se"></iframe>
</div>
<div class="column">
<h4>Sida 3</h4>
<iframe src="https://www.google.se"></iframe>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment