HTML CSS examples for CSS Widget:Table Cell
Specifically style all the table cells on the left or for a specific column
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> table td:first-child { color:Chartreuse; } </style> <!-- w ww . j a v a2 s .co m--> </head> <body> <table> <tbody> <tr> <td>Lore</td> <td>Lorem</td> </tr> <tr> <td>Lore</td> <td>Lorem</td> </tr> <tr> <td>Lore</td> <td>Lorem</td> </tr> </tbody> </table> </body> </html>