ヒーローの下部に三角形/矢印を配置しようとしていますが、三角形が右に浮いて完全に中央に配置されていないため、反応が悪く、モバイルではうまく機能しません。
三角形を常にdivの下部の絶対中心に配置するにはどうすればよいですか?
ここにコード例:
HTML:
<div class="hero"></div>
CSS:
.hero {
position:relative;
background-color:#e15915;
height:320px !important;
width:100% !important;
}
.hero:after,
.hero:after {
z-index: -1;
position: absolute;
top: 98.1%;
left: 70%;
margin-left: -25%;
content: '';
width: 0;
height: 0;
border-top: solid 50px #e15915;
border-left: solid 50px transparent;
border-right: solid 50px transparent;
}