這可能是一個愚蠢的問題,但我在HTML中下面的代碼:如何將三角形移動到CSS中的屏幕右側?
<h1 class="page-title">
Paintings
</h1>
<hr>
</header>
<div class="arrow1">
<div class="triangle-right">
</div>
</div>
,這在CSS:
.page-title {
font-size: 75px;
text-align: center;
font-weight: 100;
font-family: 'Quicksand', sans-serif;
margin: 0 auto;
}
.triangle-right {
width: 0;
height: 0;
border-top: 30px solid transparent;
border-left: 40px solid red;
border-bottom: 30px solid transparent;
}
三角形坐落在屏幕的右上角,右下方標題。我想將它移到屏幕右側和中間。我也想在左側創建另一個三角形並執行相同的操作。
我的目標是創建兩個三角形按鈕。有人可以幫我實現這個目標嗎?
你想要它在右側和中心? – RasmusGlenvig
我希望它移動到頁面的右側,然後放到中間。 – Lubidia13