Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Is it possible to apply style to all td's inside the table having specified ID?
はい、子孫セレクター経由
#table-id td { background:red }
HTML
<table id="table-id"><tr><td>Hi</td><td>, There</td></tr></table>
フィドル: http://jsfiddle.net/FjpBa/1/