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:
but responsive must give width of various container, header etc in % instead of fixed widths.
Comments
Post a Comment