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

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.75 KB  |  hits: 15  |  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. Javascript Center [closed]
  2. <html>
  3. <head>
  4.      <style type="text/css">
  5.      body{
  6.          min-width: 710px;
  7.      }
  8.      #backdrop{
  9.          min-width: 710px;
  10.          max-width: 710px;
  11.      }
  12.      </style
  13. </head><body>
  14.  
  15. <div id="backdrop">
  16. </div>
  17.  
  18. </body></html>
  19.        
  20. #backdrop{
  21.     display:block;
  22.     width: 710px;  //just specify the width. no need for min-width or max-width if this is not meant to change.
  23.     margin: 0 auto; //this will center the div in its container
  24. }
  25.        
  26. <html>
  27. <head>
  28.      <style type="text/css">
  29.      body{
  30.          min-width: 710px;
  31.      }
  32.      #backdrop{
  33.          width:710px;
  34.          margin:0 auto;
  35.      }
  36.      </style
  37. </head><body>
  38.  
  39. <div id="backdrop">
  40. </div>
  41.  
  42. </body></html>
  43.        
  44. #backdrop{
  45.    width:710px;
  46.    margin: 0 auto;
  47. }