CSS의 화살표 스트라이프
화살표(아래)
이미지
<div class="arrow"></div>
.arrow {
position: relative;
}
.arrow::before {
content: "";
display: block;
position: absolute;
top: 0px;
left: 50%;
width: 0;
height: 0;
transform: translateX(-50%);
border: 12px solid transparent;
border-top: 12px solid #000;
border-bottom-width: 0;
}
오른쪽으로 border-left: 12px solid #000;
border-right-width: 0;
로 변경하십시오.선 화살표(아래)
이미지
<div class="arrow"></div>
.arrow {
position: relative;
}
.arrow::before {
content: "";
display: block;
position: absolute;
top: 0;
right: 50%;
width: 14px;
height: 14px;
border-top: 2px solid #000;
border-right: 2px solid #000;
transform: translateX(-50%) rotate(135deg);
}
오른쪽으로 transform: translateX(-50%) rotate(45deg);
로 변경하십시오.
Reference
이 문제에 관하여(CSS의 화살표 스트라이프), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/watamura/items/d736c3647bc57d68f59e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)