发布网友 发布时间:2022-04-23 10:52
共1个回答
热心网友 时间:2022-05-13 02:38
用属性选择器来为列表加样式,按照你的截图,我可以把样式写成这样:
table tr td{width:60px;; height:30px; background-color:#000000; color:#ffffff;}//这是表头
table tr + tr td{background:none; color:#cccccc;}//table表里的样式设置
table tr + tr td:first-child{background-color:#ff0000; color:#000000;}//设置你截图圈起的表格样式
“+”这个选择器是选择相邻元素时使用,而:first-child是选择某个父元素下的第一个元素,并可以对其设置样式