Skip to content

Instantly share code, notes, and snippets.

@stephanielingwood
Created December 12, 2015 18:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save stephanielingwood/4e3d06d284c82ec057a7 to your computer and use it in GitHub Desktop.
Save stephanielingwood/4e3d06d284c82ec057a7 to your computer and use it in GitHub Desktop.
CSS template for nav bar on the left
/* Note to students: Some properties are given to you to fill out,
others you can modify as they stand, and if you have time,
there are definitely some properties you should add!*/
html {
height: 100%;
}
body {
height: 100%;
}
header {
background-color:;
padding:5px;
font-size: ;
display: block;
width: 790px;
}
nav {
line-height:;
background-color:;
width:125px;
display: inline-block;
vertical-align: top;
}
nav ul {
list-style-type: none;
}
a {
color: ;
}
section {
width: 516px;
display: inline-block;
}
aside {
width: 125px;
display: inline-block;
vertical-align: top;
background-color:;
font-size: ;
}
aside ul {
list-style-type: none;
}
footer {
width: 790px;
background-color:;
text-align:;
padding:5px;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment