首頁 > web前端 > css教學 > 如何使固定位置元素水平和垂直居中?

如何使固定位置元素水平和垂直居中?

DDD
發布: 2024-12-17 22:43:17
原創
674 人瀏覽過

How to Horizontally and Vertically Center a Fixed-Position Element?

如何將位置:固定元素居中

問題:

居中「位置:固定;」水平和垂直彈出框具有動態寬度和高度,儘管使用邊距:5% auto;

解:

有幾種方法可以實現此目的:

方法1:固定寬度和高度

  1. 將top 和left 設定為50%,以使div 的左上角居中。
  2. 將 margin-top 和 margin-left 設定為負一半div 的高度和寬度,將中心向中間移動。
position: fixed;
width: 500px;
height: 200px;
top: 50%;
left: 50%;
margin-top: -100px; /* Negative half of height */
margin-left: -250px; /* Negative half of width */
登入後複製

接近2:動態寬度和/或高度

  1. 使用transform代替margin,將其設定為div相對寬度和高度的負一半。
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
登入後複製

方法3:固定寬度,但不關心垂直居中

  1. 為元素加上left: 0 和right: 0,同時將margin-left 和margin-right 設定為auto。
position: fixed;
width: 500px;
margin: 5% auto; /* Only centers horizontally */
left: 0;
right: 0;
登入後複製

以上是如何使固定位置元素水平和垂直居中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板