I save the css file which contains :
table {
border:thick;
border-style:outset
}
But i just want to use it on one/two table, not all. ie:
<body>
<!-- table with css -->
<table>
<tr><td>Name</td></tr>
</table>
<!-- table without css -->
<table>
<tr><td>Class</td></tr>
</table>
</body>
How could i do that ?:?: