Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save begedin/5200700 to your computer and use it in GitHub Desktop.
Save begedin/5200700 to your computer and use it in GitHub Desktop.
full screen HTML layout in CSS, the final CSS for columns
.column-left, .column-right {
position: absolute;
height: 100%;
background-color: bisque;
width: 200px;
}
.column-left {
left: 0px;
}
.column-right {
right: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment