css - How to select all label elements inside table with specific class -
table
<table id="tab1" class="table labelcustom"> <tbody> <tr><td><label>example</label></td></tr> </tbody> </table> how can access css label inside td's of table class labelcustom?
use this:
table.labelcustom td label { //your css styles }
Comments
Post a Comment