zoukankan      html  css  js  c++  java
  • CSS:列表项的一些操作

    一、通过背景实现列表标记

    缺点:因为图像是设置在背景中的,不一定会被打印出来。

    解决方法:在打印样式表中声明正常的列表标记。或其他一些类似的方法。

    html:

    <ul class="starts">
            <li><div> The Broncos, who landed in San Jose at 4:45 p.m. PT Sunday, are staying just down the street from Levi’s Stadium, and practicing 14 miles away at Stanford’s practice fields and Stanford Stadium, if desired. They will practice Wednesday, Thursday and Friday at Stanford, and have a walk-through practice on Saturday morning, 11 a.m., at Levi’s Stadium, as is their normal custom. They’ll meet the media at their hotel on Tuesday, Wednesday and Thursday mornings, then be cloistered after that until Sunday.</div></li>
            <li><div> The Broncos, who landed in San Jose at 4:45 p.m. PT Sunday, are staying just down the street from Levi’s Stadium, and practicing 14 miles away at Stanford’s practice fields and Stanford Stadium, if desired. They will practice Wednesday, Thursday and Friday at Stanford, and have a walk-through practice on Saturday morning, 11 a.m., at Levi’s Stadium, as is their normal custom. They’ll meet the media at their hotel on Tuesday, Wednesday and Thursday mornings, then be cloistered after that until Sunday.</div></li>
            <li><div> The Broncos, who landed in San Jose at 4:45 p.m. PT Sunday, are staying just down the street from Levi’s Stadium, and practicing 14 miles away at Stanford’s practice fields and Stanford Stadium, if desired. They will practice Wednesday, Thursday and Friday at Stanford, and have a walk-through practice on Saturday morning, 11 a.m., at Levi’s Stadium, as is their normal custom. They’ll meet the media at their hotel on Tuesday, Wednesday and Thursday mornings, then be cloistered after that until Sunday.</div></li>
            <li><div> The Broncos, who landed in San Jose at 4:45 p.m. PT Sunday, are staying just down the street from Levi’s Stadium, and practicing 14 miles away at Stanford’s practice fields and Stanford Stadium, if desired. They will practice Wednesday, Thursday and Friday at Stanford, and have a walk-through practice on Saturday morning, 11 a.m., at Levi’s Stadium, as is their normal custom. They’ll meet the media at their hotel on Tuesday, Wednesday and Thursday mornings, then be cloistered after that until Sunday. Solutions</div></li>
            <li><div> The Broncos, who landed in San Jose at 4:45 p.m. PT Sunday, are staying just down the street from Levi’s Stadium, and practicing 14 miles away at Stanford’s practice fields and Stanford Stadium, if desired. They will practice Wednesday, Thursday and Friday at Stanford, and have a walk-through practice on Saturday morning, 11 a.m., at Levi’s Stadium, as is their normal custom. They’ll meet the media at their hotel on Tuesday, Wednesday and Thursday mornings, then be cloistered after that until Sunday.</div></li>
        </ul>

    CSS:

        ul.starts {
                list-style: none;
                margin-left: -10px;/*根据需要调整位置*/
            }
    
                ul.starts li {
                    background: url(image/star_16px_1163400_easyicon.net.png) 0 0.1em no-repeat;
                    padding-left: 16px; /*让文本右移一些*/
                    border-bottom: 1px solid black; /*加底线*/
                }
    
                ul.starts div {
                    color: black;
                }

    显示效果:

     二、生成列表标记

    优点:解决了上一个列表标记的缺点,会被打印出来。

      

        <style type="text/css">
            ul.starts li:before {
                content: url(star.png);
                margin-right: 8px;
            }
    
            ul.starts li {
                text-indent: -20px;
                list-style: none;
            }
        </style>
  • 相关阅读:
    Vue ui创建vue-cli 3.0项目
    Vue中封装axios
    微信小程序自定义顶部导航
    linux离线安装docker
    解决websocket不能@Autowired注入问题
    springboot 连接 Access数据库
    Flex 布局教程:语法篇
    通过代码来了解下java策略模式,消除if-else
    docker下安装FastDFS
    centos7下安装docker
  • 原文地址:https://www.cnblogs.com/hzz521/p/5179094.html
Copyright © 2011-2022 走看看