Is there a way to apply a Class\' style to only ONE level of td tags?
7条回答 陌清茗 (楼主) 2020-12-13 03:51 how about using the CSS :first-child pseudo-class: .MyClass td:first-child { border: solid 1px red; } 0 讨论(0) 查看其它7个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
how about using the CSS :first-child pseudo-class:
.MyClass td:first-child { border: solid 1px red; }