码迷,mamicode.com
首页 > 其他好文 > 详细

使用伪类(::before/::after)设置图标

时间:2020-11-13 12:17:39      阅读:5      评论:0      收藏:0      [点我收藏+]

标签:height   ali   width   nbsp   order   inline   图片   display   box   

使用伪类(::before/::after)设置文本前后图标。减少标签的浪费,使页面更加整洁。

如图:

技术图片

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            .box{
                margin: 20px;
                padding: 10px 0;
                border: 1px solid #ededed;
                text-align: center;
            }
            .nonemore,.goodbey{
                display: block;
                font-size: 14px;
            }
            /* before设置图标 */
            .nonemore::before{
                content: ‘ ‘;
                display: inline-block;
                width: 20px;
                height: 20px;
                background: url(img/face.png) no-repeat;
                background-size: 20px;
                vertical-align: top;
                padding-right: 10px;
            }
            /* after设置图标 */
            .goodbey::after{
                content: ‘ ‘;
                display: inline-block;
                width: 20px;
                height: 20px;
                background: url(img/face.png) no-repeat;
                background-size: 20px;
                vertical-align: top;
                margin-left: 10px;
            }
        </style>
    </head>
    <body>
        <div class="box">
            <span class="nonemore">没有更多了</span>
        </div>
        <div class="box">
            <span class="goodbey">下次再见哦</span>
        </div>
    </body>
</html>

 

使用伪类(::before/::after)设置图标

标签:height   ali   width   nbsp   order   inline   图片   display   box   

原文地址:https://www.cnblogs.com/min77/p/13914145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!