」工欲善其事,必先利其器。「—孔子《論語.錄靈公》
首頁 > 程式設計 > 如何在 CSS 中將 Div 置中

如何在 CSS 中將 Div 置中

發佈於2024-11-08
瀏覽:602

ow to Center a Div in CSS

彈性盒:

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

網格

.container {
  display: grid;
  place-items: center;
  height: 300px;
}

彈性保證金

.container {
  display: flex;
  height: 300px;
}
.centered-div {
  margin: auto;
}

絕對定位

.container {
  position: relative;
  height: 300px;
}
.centered-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

自動保證金

.container {
  height: 300px;
}
.centered-div {
  width: 200px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

網格模板

.container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  height: 300px;
}
.centered-div {
  grid-column: 2;
  grid-row: 2;
}
版本聲明 本文轉載於:https://dev.to/hahaxo/2024how-to-center-a-div-in-css-2hjj?1如有侵犯,請聯絡[email protected]刪除
最新教學 更多>

免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。

Copyright© 2022 湘ICP备2022001581号-3