码迷,mamicode.com
首页 > Web开发 > 详细

css制作小标志

时间:2019-04-26 16:19:39      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:ima   style   dde   middle   http   示例   css   code   图片   

空心箭头:示例图片技术图片

<b class="bottom"><i class="bottom-arrow1"></i><i class="bottom-arrow2"></i></b>
.post_list .spread .bottom{
    width:20px;
    height:20px;
    position:absolute;
    left:24px;
    top: .06rem;
    z-index: 2;/*兼容ie8-*/
}
.post_list .spread .bottom-arrow1,.bottom-arrow2{
    width:0;
    height:0;
    display:block;
    position:absolute;
    left:0;
    top:0;
    z-index: 5;/*兼容ie8-*/
    border-bottom:.13rem transparent dashed;
    border-left:.13rem transparent dashed;
    border-right:.13rem transparent dashed;
    border-top:.13rem white solid;
    overflow:hidden;
}
.post_list .spread .bottom-arrow1{
    top:1px;/*重要*/
    border-top:.13rem blue solid;
}
.post_list .spread .bottom-arrow2{
    border-top:.13rem white solid;
}

实心向下箭头:示例图片技术图片

<div class="test"></div>
.test{
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px;
    margin-left: 6px;
    margin-right: -14px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ccc;
}                    

 

css制作小标志

标签:ima   style   dde   middle   http   示例   css   code   图片   

原文地址:https://www.cnblogs.com/naturl/p/10774820.html

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