How to apply CSS to td of particular table?

前端 未结 4 1177
情歌与酒
情歌与酒 2021-01-19 01:00

How to apply CSS to td of one particular table; excluding all other tables in web page?


 <         
4条回答
  •  一生所求
    2021-01-19 01:41

    This is what you want.

    Check out this fiddle.

    #ToBeApplied td {
        padding:23px;
        font-weight:bold
    }
    

    Here is the snippet.

    #ToBeApplied td {
      padding: 23px;
      font-weight: bold
    }

提交回复
热议问题