Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.24 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can I make a bar flush with the top, left, and right of a browser window in CSS?
  2. #topBar {
  3.     background-color: #3B5998;
  4.     height: 41px;
  5.     left: 0;
  6.     width: 100%;
  7.     z-index: -1;
  8. }
  9.        
  10. body{
  11.     margin:0px;
  12.     padding:0px;
  13.  }