热搜词
发表于 2019-11-29 09:14:02 | 显示全部楼层 |阅读模式
利用css给奇数行或偶数行添加指定样式


odd表示奇数行,even表示偶数行;
tr:nth-child(odd);
.table-striped > tbody > tr:nth-child(odd) {
background-color: #f9f9f9;
}



#list li:nth-of-type(odd){ background:#00ccff;}奇数行
#list li:nth-of-type(even){ background:#ffcc00;}偶数行


.list ul li:nth-child(even){ ...}    //li的偶数行样式

.list ul li:nth-child(odd){ ...}    //li的奇数行样式



.list ul li:nth-child(1){ top:0;}       //第一个li
.list ul li:nth-child(2){ top:30px;}    //第二个li



部分情况下的解决方案



<style>  
.list li:nth-of-type(odd){ margin-left: 20px;}奇数行   
.list li:nth-of-type(even){margin-left: 10px;}偶数行   
<style>  




全部评论1
灰儿 发表于 2019-11-29 09:25:20 | 显示全部楼层
http://www.admin365.cn/thread-44894-1-1.html  CSS选取第几个标签元素:nth-child、first-child、last-child
回复

使用道具 举报

回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2025-1-16 02:40 , Processed in 0.191531 second(s), 22 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2025 Discuz! Team