How to apply CSS to td of particular table?

前端 未结 4 1184
情歌与酒
情歌与酒 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:37

    This should work (Assuming that you dont want to specify id for table)

    table.pure-table:first-child td {padding:23px;font-weight:bold}
    

    DEMO

提交回复
热议问题