0

Is it possible to apply style to all td's inside the table having specified ID?

4

1 に答える 1

6

はい、子孫セレクター経由

#table-id td { background:red }

HTML

<table id="table-id"><tr><td>Hi</td><td>, There</td></tr></table>

フィドル: http://jsfiddle.net/FjpBa/1/

于 2012-08-17T07:28:13.287 に答える