Flexible Centered Page
Possible Duplicate: flexible or centered page HTML CSS I need a flexible or centered page design that works even for users with screen resolutions of 800*600. (CSS + HTML) Shoul
Solution 1:
<div id="content">
</div>
#content {
width:800px; (or width: 80%;)
margin:0 auto;
}
example: http://jsfiddle.net/UyUFa/
Post a Comment for "Flexible Centered Page"