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

css简单实现带箭头的边框

时间:2019-11-11 13:09:46      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:black   左右   绝对定位   ref   href   license   组成   箭头   otto   

原文地址 https://tianshengjie.cn/artic...

css简单实现带箭头的边框

普通边框

<style>
    .border {
        width: 100px;
        height: 50px;
        border: 1px solid red;
    }
</style>
<div class="border"></div>

技术图片

实现由四个三角形组成的正方形

<style>
    .triangle {
        width: 0;
        height: 0;
        border: 100px solid red;
        border-right-color: green;
        border-left-color: blue;
        border-top-color: black;
    }
</style>
<div class="triangle"></div>

技术图片

向下三角形

<style>
    .triangle-bottom {
        width: 0;
        height: 0;
        border: 100px solid transparent;
        border-top-color: red;
    }
</style>
<div class="triangle-bottom"></div>

将左右下边颜色设置为透明 transparent,得到向下的箭头

技术图片

将三角形放入边框中

<style>
    .border-triangle {
        width: 100px;
        height: 50px;
        border: 1px solid red;
        position: relative;
    }

    .border-triangle:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border: 4px solid transparent;
        border-top-color: red;
        left: 50%;
        margin-left: -4px;
        bottom: -8px;
    }
</style>
<div class="border-triangle"></div>

将三角形设置为绝对定位,利用margin-left和left 定位到元素中间,bottom设置-8px,靠近边框底部居中

技术图片

带箭头的边框

<style>
    .border-triangle-bottom {
        width: 100px;
        height: 30px;
        border: 1px solid #1d9cd6;
        position: relative;
        border-radius: 4px;
    }

    .border-triangle-bottom:after,
    .border-triangle-bottom:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border: 4px solid transparent;
        border-top-color: #1d9cd6;
        left: 50%;
        margin-left: -4px;
        bottom: -8px;
    }

    .border-triangle-bottom:after {
        border-top-color: #fff;
        bottom: -7px;
    }
</style>
<div class="border-triangle-bottom"></div>

将边框颜色换成好看的蓝色,将before和after伪元素都设置为绝对定位,定位到边框底部剧中,将after伪元素设置成白色,底部偏移量大于before 1px,遮住三角形底部的颜色。这样一个好看的箭头边框就实现了

技术图片

css简单实现带箭头的边框

标签:black   左右   绝对定位   ref   href   license   组成   箭头   otto   

原文地址:https://www.cnblogs.com/homehtml/p/11833993.html

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