Quote:
|
Originally Posted by matauri
Tables & CSS Formatting
HTML File:
<table class="one">
<tr><td> text/image</td><td> text/image</td></tr>
<tr><td> text/image</td><td> text/image</td></tr>
<tr><td> text/image</td><td> text/image</td></tr>
<tr><td> text/image</td><td> text/image</td></tr>
<tr><td> text/image</td><td> text/image</td></tr>
<tr><td> text/image</td><td></td></tr>
</table>
CSS File:
table.one {
width: 80%;
border: 0.05em #6699CC solid;
border-collapse: collapse;
}
table.one td {
text-align: center;
font-family: Arial, Helvetica, Verdana, sans-serif;
font-weight: normal;
font-size: 0.80em;
color: #404040;
width: 50%;
background-color: #fafafa;
border: 0.05em #6699CC solid;
border-collapse: collapse;
}
End Product:
 .
|
I still think tables are better but....
Ok, take a look at this:
<table class="one">
<tr><td>text/image1</td><td>text/image2</td></tr>
<tr><td>text/image3</td><td>text/image4</td></tr>
<tr><td>text/image5</td><td>text/image6</td></tr>
<tr><td>text/image7</td><td>text/image8</td></tr>
<tr><td>text/image9</td><td>text/image10</td></tr>
<tr><td>text/image11</td><td>12</td></tr>
</table>
I want to merge cells 3-5-7-9. How? I also want to allow the table to be say 85% of the screen. Why? Because this will be the core of my site.
I have not even begun to figure out how to nest a table in a table!
Does all this keep us little guys out of the market or do-it-yourself? Or am i just being thick?
Thanks matauri.
Michael