Advertisement
Guest User

Challenge 6 part 3

a guest
Feb 22nd, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. header {
  2.     background-color: [some color];
  3.     position: fixed; /* Makes the bar fixed */
  4.     width: 100%; /* We want the bar to span the width of the window */
  5.     z-index: 2; /* We want the bar to overlap the rest of the content, by default HTML elements have a z-index of 1 and this gives our header priority over default elements*/
  6.     height: [some height]; /* Set a fixed height */
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement