html - How to center this entire site with the container div -


i'm trying person created own website (sort of, i'm not sure how she's done on own) i'm not sure i'm doing wrong.

it's simple change. has container div, header, left-side menu, right-side main content, , footer.

all want force entire site center.

the css is:

#header { width:900px; }  #menu {     float: left;     width:154px;     border-right: 1px solid grey;  }  #content {     float: left;     width:730px;     padding:2px; }  #footer {     clear: both;     width:900px;  }  #container {     width: 900px;     margin: 0 auto; } 

the site is: here

any appreciated!

the width of body set 740px, change 100% , website come in center. add following style:

body{ width: 100%; } 

see screenshot:

enter image description here

but responsive must give width of various container, header etc in % instead of fixed widths.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -