i dont like pixel widths. because im using a larger than normal monitar, and so is about half the world now. while the other half is using a regular one. so in larger monitars, pixel widths in my opinion have too much empty space and look like crap.
i'm making a film strip image display, so the code is:
HTML Code:
<style>
div.content {
padding: 0px;
width: 100%;
height: 100%;
overflow: auto;
scrollbar-arrow-color: white;
scrollbar-darkshadow-color: black;
scrollbar-track-color: black;
scrollbar-face-color: black;
scrollbar-shadow-color: white;
scrollbar-highlight-color: white;
scrollbar-3dlight-color: black;
}
div.filmstrip {
padding: 0px;
width: 100%;
height: 110px;
overflow: auto;
scrollbar-arrow-color: white;
scrollbar-darkshadow-color: black;
scrollbar-track-color: black;
scrollbar-face-color: black;
scrollbar-shadow-color: white;
scrollbar-highlight-color: white;
scrollbar-3dlight-color: black;
}
</style>
<div class="content">
<div class="filmstrip">
<table border="0" cellpadding="0" cellspacing="5" width="100%">
<tr>
<td width="0" valign="middle" align="center">
<img border="0" src="image.php?path=pics/Devin/briggs.jpg">/td>
<td width="0" valign="middle" align="center">
<img border="0" src="image.php?path=pics/Devin/Business.jpg"></td>
<td width="0" valign="middle" align="center">
<img border="0" src="image.php?path=pics/Devin/disasters.jpg"></td>
<td width="0" valign="middle" align="center">
<img border="0" src="image.php?path=pics/Devin/lars.jpg"></td>
<td width="0" valign="middle" align="center">
<img border="0" src="image.php?path=pics/Devin/murdurersrow.jpg"></td>
<td width="0" valign="middle" align="center">
<img border="0" src="image.php?path=pics/Devin/Business2.jpg"></td>
</tr></table>
</div>
</div>