CSS의 화살표 스트라이프

4922 단어 snippetsnippetsCSS

화살표(아래)


이미지
<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);
로 변경하십시오.

좋은 웹페이지 즐겨찾기