div居中是最不可能的事
Flexbox 是一種垂直和水平居中內容的現代方式:
.container { display: flex; justify-content: center; align-items: center; height: 100vh; }
Centered Content
CSS Grid也可以居中內容:
.container { display: grid; place-items: center; height: 100vh; }
Centered Content
您可以使用絕對定位將 div 置中:
.container { position: relative; height: 100vh; } .centered-div { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
Centered Content
對於簡單的水平居中,使用 margin: auto:
.centered-div { width: 50%; margin: 0 auto; }
Centered Content
對於內聯或內聯塊元素:
.container { text-align: center; line-height: 100vh; } .centered-div { display: inline-block; vertical-align: middle; line-height: normal; }
Centered Content
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3