Skip to content

Instantly share code, notes, and snippets.

@jklm313
Created October 29, 2013 17:58
Show Gist options
  • Save jklm313/7219553 to your computer and use it in GitHub Desktop.
Save jklm313/7219553 to your computer and use it in GitHub Desktop.
Untitled
* {
box-sizing: border-box;
}
.welcome, .main {
height: 200px;
width: 200px;
}
.top, .bottom {
display: inline-block;
vertical-align: top;
}
.welcome {
background: dodgerblue;
}
.main {
background: pink;
}
@media (max-width: 500px) {
.page {
display: table;
}
.top {
display: table-header-group;
}
.bottom {
display: table-footer-group;
}
}
<div class="page">
<div class='bottom'>
<div class="welcome">
<span>Welcome to my page</span>
</div>
</div>
<div class='top'>
<div class="main">
<div class="header">
</div>
<div class="content">
</div>
</div>
</div>
</div>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment