J
joe.attaboy
Guest
Set you containing blocks to specific sizes using specific measurements.
For example, if you have a div that contains all the content of the page, set the width and height to a specific size in CSS:
div.main {
width: 1000px;
height: 1000px;
}
if you do this vice using percentages, the layout should stay fixed in place when you shrink the window.
For example, if you have a div that contains all the content of the page, set the width and height to a specific size in CSS:
div.main {
width: 1000px;
height: 1000px;
}
if you do this vice using percentages, the layout should stay fixed in place when you shrink the window.