css - ul ol前边的标记如何调整样式呢
大家讲道理
大家讲道理 2017-05-16 13:22:24
0
3
783

遇到了这样的情况;如果用的是bootstrap框架开发的话。
请问:该怎么写呢,求各位老哥提供点思路。(能用的话最好把bootstrap用上,用不上也行)
如图:

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(3)
我想大声告诉你

https://codepen.io/HaoyCn/pen...

滿天的星座

list-style-image 可以实现 图标字体可以实现

刘奇

建议还是不要用list-style,最好自定义样式,给li标签添加背景色,添加圆角边,再给前三个自定义颜色

最终效果:

css代码

   <style>
    li {
        list-style: none;
        width: 20px;
        text-align: center;
        margin: 10px 0;
        border-radius: 4px;
        color: #fff;
        background-color: #ccc;
    }
    .one{
        background-color: red;
    }
    .two{
        background-color: green;
    }
    .three{
        background-color: orange;
    }
    </style>

HTML

    <ul>
        <li class="one">1</li>
        <li class="two">2</li>
        <li class="three">3</li>
        <li>4</li>
        <li>5</li>
        <li>6</li>
        <li>7</li>
        <li>8</li>
        <li>9</li>
        <li>10</li>
    </ul>
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板