HTML interesse |
|
Op mijn site heb ik een design met een tabel:
navlinks | content | navrechts
Maar als ik in 'content' een tabel over de volle breedte van 'content' wil (dus met width="100%") hebben krijg ik in 'ie6' een tabel over de hele pagina, wat juist niet de bedoeling is. Want het het moet over de volle breedte van 'content'. (In ff werkt het wel...) Dus hoe los ik dit op?
Index.php
<table width="100%" border="0">
<tr>
<td width="160" valign="top">
<div id="navcontent">
</div>
</td>
<td width="*" valign="top">
<div id="content">
<!-- Dus als je hier dit zet: -->
<table width="100%">
</table>
<!-- Dan is de pagina heel erg uitgerekt in ie6... -->
</div>
</td>
<td width="160" valign="top">
<div id="navcontent">
</div>
</td>
</tr>
</table>
<table width="100%" border="0"> <tr> <td width="160" valign="top"> <div id="navcontent"> </div> </td> <td width="*" valign="top"> <div id="content"> <!-- Dus als je hier dit zet: --> <table width="100%"> </table> <!-- Dan is de pagina heel erg uitgerekt in ie6... --> </div> </td> <td width="160" valign="top"> <div id="navcontent"> </div> </td> </tr> </table>
Style.css
body {
background-color: #F8F8F8;
font-family: verdana, tahoma, helvetica, arial, sans-serif;
font-size: 100%;
color: #888888;
}
#content {
position: static;
background-color: #FFFFFF;
padding-bottom: 0.8em;
padding-left: 0.8em;
padding-right: 0.8em;
border-style: solid; border-width: 1px; border-color: #E5E5E5;
margin-bottom: 13px;
margin-left: 0.8em;
margin-right: 0.8em;
}
#navcontent {
position: static;
background-color: #FFFFFF;
color: #FF9933;
padding-bottom: 0.8em;
padding-left: 0.8em;
padding-right: 0.8em;
border-style: solid; border-width: 1px; border-color: #E5E5E5;
margin-bottom: 13px;
}
...
body { background-color: #F8F8F8; font-family: verdana, tahoma, helvetica, arial, sans-serif; font-size: 100%; color: #888888; } #content { background-color: #FFFFFF; padding-bottom: 0.8em; padding-left: 0.8em; padding-right: 0.8em; border-style: solid; border-width: 1px; border-color: #E5E5E5; margin-bottom: 13px; margin-left: 0.8em; margin-right: 0.8em; } #navcontent { background-color: #FFFFFF; color: #FF9933; padding-bottom: 0.8em; padding-left: 0.8em; padding-right: 0.8em; border-style: solid; border-width: 1px; border-color: #E5E5E5; margin-bottom: 13px; } ...
En ik wil geen vaste waarde voor width (zoals: width="500"). Want ik wil dat de pagina zich aanpast aan de schermresoltie.
|