欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

边框上的突出小箭头

程序员文章站 2022-05-28 21:52:05
...

边框上的突出小箭头

.tcnr{
width: 15.3rem;
height: 5.325rem;
background: rgba(245,247,254,1);
border: 0.05rem solid rgba(161,187,250,1);

            position: relative;
            
            
        }

突出小箭头里的颜色

.tcnr:before{
box-sizing: content-box;
width: 0rem;
height: 0rem;
position: absolute;
top: -0.4rem;;
left:1.825rem;
padding:0;
border-bottom:0.2rem solid #F5F7FE;
border-top:0.2rem solid transparent;
border-left:0.2rem solid transparent;
border-right:0.2rem solid transparent;
display: block;
content:’’;
z-index: 12;
}

突出小箭头

        .tcnr:after{
            box-sizing: content-box;
            width: 0rem;
            height: 0rem;
            position: absolute;
            top: -0.45rem;;
            left:1.8rem;
            padding:0;
            border-bottom:0.225rem solid #A1BBFA;
            border-top:0.225rem solid transparent;
            border-left:0.225rem solid transparent;
            border-right:0.225rem solid transparent;
            display: block;
            content:'';
            z-index:10
        }