我們可以輕松地將文本在 div 內(nèi)水平和垂直居中。讓我們一一看看。
使用 text-align 屬性將 Div 中的文本水平居中
要將 div 中的文本水平居中,請使用 text-align 屬性。 text-align 屬性確定行框在塊級元素內(nèi)的對齊方式。以下是可能的值 –
left – 每個行框的左邊緣與塊級元素內(nèi)容區(qū)域的左邊緣對齊。
right – 每個行框的右邊緣與塊級元素內(nèi)容區(qū)域的右邊緣對齊。
center – 每個行框的中心與塊級元素內(nèi)容區(qū)域的中心對齊。
justify – 每個行框的邊緣應與塊級元素內(nèi)容區(qū)域的邊緣對齊。
字符串 – 列中單元格的內(nèi)容將在給定字符串上對齊。
示例
現(xiàn)在讓我們使用 text-align 屬性將 div 中的文本水平居中 –
<!DOCTYPE html> <html> <head> <title>Align Horizontally</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .demo { background-color: orange; border: 3px solid yellow; text-align: center; } </style> </head> <body> <h1>Software Quality Management</h1> <p>Software Quality Management ensures the required level of software quality is achieved. </p> <div class="demo"> <p>This text in div is centered horizontally.</p> </div> </body> </html>
登錄后復制
使用 justify-content 屬性在 Div 中水平居中文本
示例
要將 div 中的文本水平居中,請使用 justify-content 屬性。現(xiàn)在讓我們看一個例子
<!DOCTYPE html> <html> <head> <title>Align Horizontally</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .demo { background-color: orange; border: 3px solid yellow; display: flex; justify-content: center; } </style> </head> <body> <h1>Software Quality Management</h1> <p>Software Quality Management ensures the required level of software quality is achieved. </p> <div class="demo"> <p>This text in div is centered horizontally.</p> </div> </body> </html>
登錄后復制
使用 padding 屬性在 Div 中垂直居中文本
要將 div 中的文本垂直居中,請使用 padding 屬性。 padding 屬性允許您指定元素的內(nèi)容與其邊框之間應出現(xiàn)多少空間。以下 CSS 屬性可用于控制列表。您還可以使用以下屬性為框每一側(cè)的填充設置不同的值 –
-
padding-bottom 指定元素的底部填充。
padding-top 指定元素的頂部填充。
padding-left 指定元素的左內(nèi)邊距。
padding-right 指定元素的右內(nèi)邊距。
padding 用作前述屬性的簡寫。
示例
現(xiàn)在讓我們看一個使用 padding 屬性在 div 中垂直居中文本的示例 –
<!DOCTYPE html> <html> <head> <title>Align Vertically</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .demo { background-color: orange; border: 3px solid yellow; padding: 50px 0; } </style> </head> <body> <h1>Software Quality Management</h1> <p>Software Quality Management ensures the required level of software quality is achieved. </p> <div class="demo"> <p>This text in div is centered vertically.</p> </div> </body> </html>
登錄后復制
使用 line-height 屬性在 Div 中垂直居中文本
要將 div 中的文本垂直居中,請使用 line-height 屬性。 line-height 屬性修改組成一行文本的行內(nèi)框的高度。
以下是可能的值 –
正常 – 指示瀏覽器將元素中的行高設置為“合理”距離。
number – 元素中行的實際高度是該值乘以元素的字體大小。
length – 元素中行的高度是給定的值。
百分比 – 元素中行的高度按元素字體大小的百分比計算。
示例
現(xiàn)在讓我們看一個使用 line-height 屬性在 div 中垂直居中文本的示例 –
<!DOCTYPE html> <html> <head> <title>Align Vertically</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .demo { background-color: orange; border: 3px solid yellow; line-height: 150px; height: 200px; } </style> </head> <body> <h1>Software Quality Management</h1> <p>Software Quality Management is a process that ensures the required level of software quality is achieved.</p> <div class="demo"> <p> This text in div is centered vertically.</p> </div> </body> </html>
登錄后復制
以上就是如何將文本(水平和垂直)居中在一個div塊內(nèi)?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!