I have a lot of tables and was wondering how I could use CSS with them?
Would it be easier to use div and if so how does it work? I have alot of tables and tds so was wondering the best way to get the CSS to work efficiently? Please advise.
Code:
<style>
#content {
font-size: 7pt;
font-color: blue;
font-family: Arial, Helvetica, sans-serif;
}
</style>
<table class="content">
<tr>
<td>data</td><td>datahere</td><td>moredata</td><td>datanext</td><td>dataagain</td>
</tr>
<tr>
<td>data</td><td>datahere</td><td>moredata</td><td>datanext</td><td>dataagain</td>
</tr>
</table>
<table class="content">
<tr>
<td>data</td><td>datahere</td><td>moredata</td><td>datanext</td><td>dataagain</td>
</tr>
</table>
etc..
Would it be easier to use div and if so how does it work? I have alot of tables and tds so was wondering the best way to get the CSS to work efficiently? Please advise.