Just a tip, but if you're entering the world of web design as a graphic designer, consider tableless CSS in favour of HTML tables for layout and presentation, you'll thank yourself later.
Something along the lines of:
Code:
<style type="text/css">
#your_div
{
width: 250px;
height: 250px;
display: block;
position: relative;
border: 1px solid #000;
}
</style>
<div id="your_div"> </div>
Instead of:
Code:
<style type="text/css">
#your_table
{
width: 250px;
height: 250px;
display: block;
position: relative;
border: 1px solid #000;
}
</style>
<table id="your_table">
<tbody>
<tr>
<td> </td>
</tr>
</tbody>
</table>
Bookmarks