12ボタンの矢印を作成する
emoji_objects
.**********::before {
content: "";
position: absolute;
top: 50%;
right: 20px;
width: 10px;
height: 10px;
border-top: 2px solid #000;
border-right: 2px solid #000;
transform: rotate(45deg) translateY(-50%);
}
.++++++++++::before {
content: "";
position: absolute;
top: 50%;
right: 14px;
width: 10px;
height: 1px;
margin-top: -4px;
border-top: 1px solid #000;
transform: rotate(45deg);
}
.++++++++++::after {
content: "";
position: absolute;
top: 50%;
right: 16px;
width: 30px;
height: 1px;
background: #000;
}
ヒント
-- css --
transform: rotate();
transform: translateY();