This content has been marked as final.
Show 2 replies
-
1. Re: CSS Percentage vs. Pixels
Nancy O. Mar 30, 2010 4:37 PM (in response to helpvid)You will get better results using a hybrid of % along with min- and max-width in pixels. This will keep your page layout from collapsing or expanding too much on super wide and super narrow displays.
#wrapper {
background-color: #222;
width: 90%;
min-width: 1045px;
max-width: 1580px;
margin-right: auto;
margin-left: auto;
}Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com -
2. Re: CSS Percentage vs. Pixels
helpvid Mar 30, 2010 9:51 PM (in response to Nancy O.)Hi Nancy, need i only apply this rule to the wrapper div to auto fit all sizes of screen, what about the divs within like #body #bodyLeft #bodyRight can I keep them defined by pixels or do i change then to %



