纯css实现不同方向的三角形

时间:2023-03-10 05:23:06
纯css实现不同方向的三角形
.triangle {
position: relative;
&:after {
position: absolute;
top: 50%;
transform: translate(0,-50%);
right:;
content: '';
display: block;
width:;
height:;
background: transparent;
border: 10px solid transparent;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
border-right-color: #0f0;
}
}

纯css实现不同方向的三角形