PHP gevorderde |
|
Is het mogelijk om met CSS, links in een bepaalde TD eigenschappen mee te geven..
[Voorbeeld]
<style>
.tblHead {
color:#d3d3d3;
padding: 2px;
}
</style>
<table cellpadding="0" cellspacing="0">
<tr>
<td class='tblHead'>blaat <a href="test.html">test</a></td>
</tr>
</table>
<style> .tblHead { color:#d3d3d3; padding: 2px; } </style> <table cellpadding="0" cellspacing="0"> <tr> <td class='tblHead'>blaat <a href="test.html">test</a></td> </tr> </table>
Nu is de bedoeling, dat de links in de class 'tblHead' allemaal dezelfde style krijgen.
Ik bedoel dus eigenlijk zoeits
.tblHead.a {
color: #FFFFFF;
}
.tblHead.a { color: #FFFFFF; }
Is dit mogelijk?
|