博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS3美化有序列表
阅读量:6228 次
发布时间:2019-06-21

本文共 4280 字,大约阅读时间需要 14 分钟。

如图效果:

  1. 周波 19
  2. 王一山 16
  3. 周波 19
  4. 周波 19
  5. 周波 19

 

 

.rightList{                    margin-left: 180px;                    // border:2px solid red;                    // background-color: #eee;                    counter-reset: num; /* 创建一个计数器 */                                        >li{                        height:28px;                        line-height: 28px;                        padding-left:45px;                        background-color: #eee;                        margin-bottom: 4px;                        border-radius: 6px;                        position: relative;                        >span{                            display: inline-block;                            width:31%;                            // background: #fff;                            text-align: center;                        }                        >span:first-child{                            text-align: left;                        }                        .icon-arrow-up-solid{                            color:red;                            font-size: 14px;                        }                        .icon-arrow-down-solid{                            color:#78c06e;                            font-size: 14px;                        }                    }                    >li:nth-child(1){                        color:red;                    }                    >li:nth-child(1)::before{                        background-color: red;                        color:#fff;                    }                    >li:nth-child(2){                        color:#f60;                    }                    >li:nth-child(2)::before{                        background-color: #f60;                        color:#fff;                    }                    >li:nth-child(3){                        color:#5c6bc0;                    }                    >li:nth-child(3)::before{                        background-color: #5c6bc0;                        color:#fff;                    }                    >li::before{                        content: counter(num);              counter-increment: num;                         height: 28px;                         width: 28px;                         line-height: 28px;                         position: absolute;                         left: -10px;                         top: 50%;                         margin-top: -17px;                         background: #87ceeb;                         font-weight: bold;                        font-size: 13px;                                                border: 3px solid #fff;                         text-align: center;                         border-radius: 50%;                     }                    >li,                    >li::before{                        -webkit-transition: all 0.3s ease-out;                         -moz-transition: all 0.3s ease-out;                         -ms-transition: all 0.3s ease-out;                         -o-transition: all 0.3s ease-out;                         transition: all 0.3s ease-out;                    }                    >li:hover{                        background-color:#ddd;                    }                    >li:hover::before{                        left:-20px;                        // -moz-transform: rotate(360deg);                         // -webkit-transform: rotate(360deg);                         // -o-transform: rotate(360deg);                         // -ms-transform: rotate(360deg);                         // transform: rotate(360deg);                    }                }

 

转载地址:http://fotna.baihongyu.com/

你可能感兴趣的文章
AsyncTask研究
查看>>
Oracle监听器启动出错:本地计算机上的OracleOraDb10g_home1TNSListener服务启动后又停止了解决方案...
查看>>
ibatis运行的SQL语句的输出——通过配置log4j
查看>>
maven常见问题问答(超全面)
查看>>
JSP中获取各种路径的方法
查看>>
linux 特殊权限 之 SUID 实例
查看>>
linux操作命令
查看>>
Capture Nx
查看>>
RedHat/CentOS命令记录
查看>>
git 学习
查看>>
MySQL基于LVM快照的备份恢复
查看>>
庞升东:个人网站年广告销售收入可超千万
查看>>
[译]ECMAScript 5 Objects and Properties
查看>>
MPEG-7 视觉描述符
查看>>
ELK6.5 Nginx 日志搜集-05 filebeat 安装
查看>>
如何用 Retrofit 2 在安卓上实现 HTTP 访问?
查看>>
2013 北京 QCon热点分享
查看>>
Linux系统下利用文件创建文件系统
查看>>
阿轶来了~
查看>>
kickstart为root用户设置自定义密码
查看>>