Maison > Questions et réponses > le corps du texte
P粉6595182942023-09-06 11:48:07
Vous pouvez le centrer horizontalement en :
.box { position: absolute; top:10px; left:50%; background:white; padding:10px; border-radius:10px; transform: translateX(-50%); }
P粉7522900332023-09-06 09:49:47
Vous pouvez centrer un composant à l'aide de la propriété 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>