Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions left-hand-nav-drill/main.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
.container {
margin: 0 auto;
/*Put your code here*/
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your container is currently full width, you can set a width and/or max-width and it should center the container.


/* & here */
.content {
margin-left: 20%;
padding-left: 20px;
width: 600px;
border-left: thin solid black;
}

header {
margin-left: 40px;
}

nav {
float: left;
width: 20%;
}

nav ul {
list-style-type: none;
}

footer {
border-top: thin solid black;
padding-left: 20%;
}