I am creating a webpage at work. The previous one I created I used absolute widths, to fit a 800x600 resolution. My boss didn't really like this because anyone with a larger resolution wouldn't get the full effect of the page. So for the site, I've decided to use percentages. I have the following Table layout...
_____________________________
| | |
| | |
| 200px | rest of the |
| wide | Page |
| | |
| | |
| | |
|_______|_____________________|
I have the layout done, I just can't get the width's correct. I'm using nested tables. How would I mix absolute width and percentage? I can do something like this...
<tr>
<td width=20%>blah</td>
<td width=80%>blah blah</td>
</tr>
But I want that left "frame" to be 200px no matter what size the screen is. If I do this...
<tr>
<td style="width: 200px" width="200">blah</td>
<td width=*%>blah blah</td>
</tr>
The second column doesn't fill the entire screen. It just sits all the way to the right of the screen. Is there something I'm doing wrong? Any suggestions would be greatly appreciated.
Doug
_____________________________
| | |
| | |
| 200px | rest of the |
| wide | Page |
| | |
| | |
| | |
|_______|_____________________|
I have the layout done, I just can't get the width's correct. I'm using nested tables. How would I mix absolute width and percentage? I can do something like this...
<tr>
<td width=20%>blah</td>
<td width=80%>blah blah</td>
</tr>
But I want that left "frame" to be 200px no matter what size the screen is. If I do this...
<tr>
<td style="width: 200px" width="200">blah</td>
<td width=*%>blah blah</td>
</tr>
The second column doesn't fill the entire screen. It just sits all the way to the right of the screen. Is there something I'm doing wrong? Any suggestions would be greatly appreciated.
Doug