곡선 css
본문
답변 3
.cir {
width: 400px;
height: 50px;
position:relative;
overflow:hidden;
margin: 0 auto;
}
.cir:before{
content:'';
position:absolute;
top:-300px;
left:0;
width:400px;
height:400px;
border-radius:100%;
border: 2px dashed #fe2d;
box-sizing:border-box;
}
원하시는게 맞을까 모르겠지만 저도 도움 받았었어요
올리신 이미지만 보면
border-radius 만써도 될 듯하지만
어떻게 활용한 것인지에 따라 방법도 달라지겠죠.
답변을 작성하시기 전에 로그인 해주세요.