Skip to content

Instantly share code, notes, and snippets.

@natac13
Created March 28, 2016 23:11
Show Gist options
  • Save natac13/42e688113af7982b2468 to your computer and use it in GitHub Desktop.
Save natac13/42e688113af7982b2468 to your computer and use it in GitHub Desktop.
/*
A div with class “navbar”, when nested inside a div with id “header”, should
have a width of 100px, a left padding of 10px, and always be visible at a fixed
position 30 pixels from the top of the window.
*/
div#header > div.navbar {
width: 100px;
padding-left: 10px;
visibility: visible;
position: fixed;
top: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment