這裏我需要做的是使用下面的CSS技巧旋轉45%。如何使用CSS旋轉45%的箭頭圖標
在這裏,我已經包括了我都試過了,
.hero { \t
\t position:relative;
}
.hero:after,
.hero:after {
\t z-index: -1;
\t position: absolute;
top: 98.1%;
left: 70%;
margin-left: -25%;
content: '';
width: 0;
height: 0;
border-bottom: solid 50px #e15915;
border-left: solid 50px transparent;
border-right: solid 50px transparent;
}
<div class="hero"></div>
究竟是什麼 「的打擊CSS技巧」? – connexo