首頁 >web前端 >css教學 >如何在響應式 div 元素中垂直居中文字?

如何在響應式 div 元素中垂直居中文字?

Patricia Arquette
Patricia Arquette原創
2024-11-09 04:20:02495瀏覽

How to Vertically Center Text in a Responsive Div Element?

響應式Div 元素中的垂直文字對齊

處理動態大小的DIV 容器中的內容時,垂直對齊文字可能具有挑戰性。本問題探討如何在 DIV 元素內垂直居中文本,無論其高度為何。

問題陳述:

考慮以下 HTML 結構:

<body>
    <div>

無論 DIV 的高度如何,H1 標籤如何在 DIV 內垂直居中?

解:

最有效的解法是利用 display 屬性。將包裝元素設定為表格,我們可以使用vertical-align:middle來讓元素居中:

<body>
    <div>
        

Text

body {width: 100%; height: 100%;}  /* For visualization purposes */

div {
    position:absolute; height:100%; width:100%;
    display: table;
}
h1 {
    display: table-cell;
    vertical-align: middle;
    text-align:center;
}

測試:

此解決方案在各種平台和瀏覽器上進行了測試,包括:

Windows XP Professional versão 2002 Service Pack 3

  • Internet Explorer 8.0.6001.18787 🎜>
  • Opera 11.62
  • Firefox 3.6.16
  • Safari 5.1.2
  • Google 18.0.1025.168Windows 7 家用版Service Pack 1

Internet Explorer 9.0.8112.164211COpera 11.62

  • Opera 11.62
  • Opera 11.62
  • Opera 11.62
  • Fi.S11 . .4
Google Chrome 18.0.1025.168 m

Linux Ubuntu 12.04
  • Linux Ubuntu. 18.0。 1025.151(開發者版本 130497 Linux)

以上是如何在響應式 div 元素中垂直居中文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:如何設定 div 背景的不透明度而不影響 IE 8 中包含的元素?下一篇:如何設定 div 背景的不透明度而不影響 IE 8 中包含的元素?

相關文章

看更多