Skip to content

Instantly share code, notes, and snippets.

@ashphy
Last active April 9, 2017 11:12
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 ashphy/25d907ae59688b70ff86510782807431 to your computer and use it in GitHub Desktop.
Save ashphy/25d907ae59688b70ff86510782807431 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="wrapper">
<div id="header">HEADER</div>
<div id="main">
<div id="side">SIDE</div>
<div id="contents">CONTENTS</div>
</div>
<div id="footer"></div>
</div>
</body>
</html>
html,body {
height:100%;
}
#wrapper {
width: 980px;
padding: 10px;
margin: auto;
border-left: 1px dotted gray;
height: 100%;
}
#header {
background: red;
padding: 10px;
}
#main {
}
#side {
background-color: green;
float: left;
padding: 10px;
margin: 0 10px;
width: 450px;
}
#contents {
background-color: blue;
float: left;
padding: 10px;
margin: 0 10px;
width: 450px;
}
#footer {
clear: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment