jacktripper
Programmer
I've tried unsuccessfully to find some answers to this, although I'm sure people have done this before.
I want to have a min and max size to my web page. Right now I want the Min to be about 950px wide and the max at 1200px. I set up my stylesheet as:
table.main
{
background-color: White;
min-width: 950px;
max-width: 1200px;
width: auto;
border: 1;
border-style: dashed;
}
My table row is basically a column with a logo (fixed size), and a column with a menu that I want to expand as high as the 1200px max of the table. I have that colunm set to 100%.
But, I guess because of that, the whole table expands to 100% regardless of having the stylesheet set to a max-width of 1200 px.
What am I missing here? I just want to make sure my page/table never gets smaller than 950 and never gets bigger that 1200.
I am using IE 7.