亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在css中實現垂直居中

發布時間:2021-04-20 16:10:09 來源:億速云 閱讀:173 作者:Leah 欄目:web開發

怎么在css中實現垂直居中?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

css是什么意思

css是一種用來表現HTML或XML等文件樣式的計算機語言,主要是用來設計網頁的樣式,使網頁更加美化。它也是一種定義樣式結構如字體、顏色、位置等的語言,并且css樣式可以直接存儲于HTML網頁或者單獨的樣式單文件中,而樣式規則的優先級由css根據這個層次結構決定,從而實現級聯效果,發展至今,css不僅能裝飾網頁,也可以配合各種腳本對于網頁進行格式化。

css實現垂直居中

1.利用line-height實現居中,這種方法適合純文字類的;

怎么在css中實現垂直居中

<!-- css -->
<style>
.parents {
  height: 400px;
  line-height: 400px;
  width: 400px;
  border: 1px solid red;
  text-align: center;
}

.child {
  background-color: blue;
  color: #fff;
}
 </style>
</head>

<body>
<!-- html -->
<div class="parents">
   <span class="child">css布局,實現垂直居中</span>
</div>
</body>

2.通過設置父容器相對定位,子級設置絕對定位,標簽通過margin實現自適應居中;

怎么在css中實現垂直居中

<!-- css -->
<style>
.parents {
  height: 400px;
  width: 400px;
  border: 1px solid red;
  position: relative;
}

.child {
  width: 200px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: #fff;
  background-color: blue;
  /* 四個方向設置為0, 然后通過margin為auto自適應居中 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
 </style>
</head>

<body>
<!-- html -->
<div class="parents">
  <span class="child">css布局,實現垂直居中</span>
</div>
</body>

3.彈性布局flex 父級設置display: flex; 子級設置margin為auto實現自適應居中;

怎么在css中實現垂直居中

  <!-- css -->
  <style>
    .parents {
      height: 400px;
      width: 400px;
      border: 1px solid red;
      display: flex;
    }

    .child {
      width: 200px;
      height: 100px;
      line-height: 100px;
      text-align: center;
      color: #333;
      background-color: yellow;
      margin: auto;
  }
 </style>
</head>

<body>
 <!-- html -->
  <div class="parents">
    <span class="child">css布局,實現垂直居中</span>
  </div>
</body>

4. 父級設置相對定位,子級設置絕對定位,并且通過位移transform實現;

怎么在css中實現垂直居中

  <!-- css -->
  <style>
    .parents {
      height: 400px;
      width: 400px;
      border: 1px solid red;
      position: relative;
    }

    .child {
      width: 200px;
      height: 100px;
      line-height: 100px;
      text-align: center;
      color: #fff;
      background-color: green;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  </style>
</head>

<body>
  <!-- html -->
  <div class="parents">
    <span class="child">css布局,實現垂直居中</span>
  </div>
</body>

5. 父級設置彈性盒子,并設置彈性盒子相關屬性;

怎么在css中實現垂直居中

 <!-- css -->
 <style>
    .parents {
      height: 400px;
      width: 400px;
      border: 1px solid red;
      display: flex;
      justify-content: center; /* 水平 */
      align-items: center; /* 垂直 */
    }

    .child {
      width: 200px;
      height: 100px;
      color: black;
      background-color: orange;
    }
  </style>
</head>

<body>
  <!-- html -->
  <div class="parents">
    <span class="child"></span>
  </div>
</body>

6. 網格布局,父級通過轉換成表格形式,然后子級設置行內或行內塊實現。(需要注意的是:vertical-align: middle使用的前提條件是內聯元素以及display值為table-cell的元素)。

怎么在css中實現垂直居中

 <!-- css -->
 <style>
    .parents {
      height: 400px;
      width: 400px;
      border: 1px solid red;
      display: table-cell;
      text-align: center;
      vertical-align: middle;
    }

    .child {
      width: 200px;
      height: 100px;
      color: #fff;
      background-color: blue;
      display: inline-block; /* 子元素設置行內或行內塊 */
    }
  </style>
</head>

<body>
  <!-- html -->
  <div class="parents">
    <span class="child"></span>
  </div>
</body>

關于怎么在css中實現垂直居中問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

木里| 永城市| 扶绥县| 申扎县| 萨嘎县| 大荔县| 冕宁县| 鹿邑县| 扎鲁特旗| 喀喇沁旗| 天峻县| 航空| 无为县| 舒兰市| 岳普湖县| 黄浦区| 始兴县| 上饶县| 高陵县| 榕江县| 卓尼县| 洛隆县| 宜兰市| 交城县| 容城县| 祥云县| 孟州市| 浮山县| 海口市| 观塘区| 三穗县| 喀喇沁旗| 镇安县| 吴江市| 册亨县| 临沭县| 扎鲁特旗| 洛南县| 林西县| 杭锦后旗| 岳阳县|