LoginSignup
2
2

More than 5 years have passed since last update.

cssで90度以上の矢印を作る

Posted at

画像のスライドボタンなどでよくある、縦に広がっている矢印をcssだけで作ります。
arrow.png

<p class="big-arrow-right"></p>
.big-arrow-right{
  position: relative;
}
.big-arrow-right::before {
    content:' ';
    width: 50px;
    height: 50px;
    border-right: solid 4px #ccc;
    transform: rotate(35deg);
    position: absolute;
    top: calc(50% - 19px);
    right: 10px;
}

 .big-arrow-right::after {
   content:' ';
   width: 50px;
   height: 50px;
   border-right: solid 4px #ccc;
   transform: rotate(-35deg);
   position: absolute;
   top: calc(50% - 32px);
   right: 10px;
 }

before、afterを二つ使って、上の矢印と下の矢印をくっつけています。
top: calc(50% - 19px);top: calc(50% - 32px);なので、微妙にセンターになっていないかもしれません。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2