css 每天一练之一个标签实现box左边竖线

css 每天一练之一个标签实现box左边竖线_第1张图片
效果图

htm结构

css样式

div{ 
    width: 200px;
    height: 50px;
    background-color: #15b9d4; 
    margin: 20px auto;
    box-sizing: border-box;
}
.box1{
    border-left: 5px solid #000;
}
.box2{
    box-shadow: inset 5px 0 0 0 #000;
}
.box3{
    box-shadow: -5px 0 0 0 #000;
}
.box4{
    background-image: linear-gradient(90deg,#000000 5px, transparent 5px);
}
.box5{
    filter: drop-shadow(-5px 0 0 #000);
}
.box6{
    position: relative;
}
.box6:after{
    content: '';
    width: 5px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
}

欢迎访问我的博客,同步发布
感谢阅读,如有错误欢迎指正。

你可能感兴趣的:(css 每天一练之一个标签实现box左边竖线)