P粉6595182942023-09-06 11:48:07
你可以透過以下方式將其水平居中:
.box { position: absolute; top:10px; left:50%; background:white; padding:10px; border-radius:10px; transform: translateX(-50%); }
P粉7522900332023-09-06 09:49:47
您可以使用display: flex;
屬性將元件置中對齊。
body { flex: 1; background:blue; display: flex; justify-content: center; } .box { position: absolute; top:10px; background:white; padding:10px; border-radius:10px; }
<div class="box"> 这是一个很长的div,所以需要左边=30% </div>