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

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -