【CSS】くの字矢印をCSSで実装する

上下左右表示してみる

上矢印 <div class="arrow arrow-top"></div> <br>
下矢印 <div class="arrow arrow-bottom"></div> <br>
左矢印 <div class="arrow arrow-left"></div> <br>
右矢印 <div class="arrow arrow-right"></div> <br>

<style>
.arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #5070e3;
  border-right: solid 2px #5070e3;
  position: absolute;
  left: 10px;
  top: 8px;
}

.arrow.arrow-top::before {
  transform: rotate(-45deg);
  top: 10px;
}

.arrow.arrow-bottom::before {
  transform: rotate(135deg);
}

.arrow.arrow-left::before {
  transform: rotate(-135deg);
}

.arrow.arrow-right::before {
  transform: rotate(45deg);
}
</style>

  • DEMO
上矢印

下矢印

左矢印

右矢印

ポイント
  • ::before要素position: absoluteを使用するので、
    親要素である.arrowにはposition: relativeを指定する
  • ::before要素borderを使用して矢印の形にする
    (borderのpx値太さも変更可能)
  • 上下左右の向きはtransform: rotateの値で指定する

丸で囲んでみる

上矢印 <div class="arrow-round arrow-top"></div> <br>
下矢印 <div class="arrow-round arrow-bottom"></div> <br>
左矢印 <div class="arrow-round arrow-left"></div> <br>
右矢印 <div class="arrow-round arrow-right"></div> <br>

<style>
.arrow-round {
  position: relative;
  display: inline-block;
  padding: 10px;
  border: 1px solid #5070e3;
  border-radius: 50%;
  top: 5px;
}

.arrow-round::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px #5070e3;
  border-right: solid 2px #5070e3;
  position: absolute;
  left: 5px;
  top: 5px;
}

.arrow-round.arrow-top::before {
  transform: rotate(-45deg);
  top: 7px;
}

.arrow-round.arrow-bottom::before {
  transform: rotate(135deg);
  top: 4px;
}

.arrow-round.arrow-left::before {
  transform: rotate(-135deg);
  left: 7px;
}

.arrow-round.arrow-right::before {
  transform: rotate(45deg);
  left: 3px;
}
</style>

  • DEMO
上矢印

下矢印

左矢印

右矢印

\ 案件のご依頼・ご相談はこちらから /