Skip to content

Instantly share code, notes, and snippets.

@emilsundberg
Created August 23, 2012 08:35
Show Gist options
  • Save emilsundberg/3434312 to your computer and use it in GitHub Desktop.
Save emilsundberg/3434312 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<meta charset=UTF-8>
<title>Reverse Vertical Order</title>
<body>
<div>
<div class=bottom>Bottom</div>
<div class=top>Top</div>
</div>
.top {
display: table-header-group;
}
.bottom {
display: table-footer-group;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment