我們可以輕鬆地將文字在 div 內水平和垂直居中。讓我們一一看看。
要將 div 中的文字水平居中,請使用 text-align 屬性。 text-align 屬性決定行框在區塊級元素內的對齊方式。以下是可能的值 -
left - 每個行框的左邊緣與區塊級元素內容區域的左邊緣對齊。
right - 每個行框的右邊緣與區塊級元素內容區域的右邊緣對齊。
center - 每個行框的中心與區塊級元素內容區域的中心對齊。
justify - 每個行框的邊緣應與區塊級元素內容區域的邊緣對齊。
字串 - 列中單元格的內容將在給定字串上對齊。
現在讓我們使用 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>
要將 div 中的文字水平居中,請使用 justify-content 屬性。現在讓我們來看一個例子
<!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>
要將 div 中的文字垂直居中,請使用 padding 屬性。 padding 屬性可讓您指定元素的內容與其邊框之間應出現多少空間。以下 CSS 屬性可用於控制清單。您也可以使用以下屬性為框每一側的填滿設定不同的值 -
現在讓我們看一個使用 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>
要將 div 中的文字垂直居中,請使用 line-height 屬性。 line-height 屬性修改組成一行文字的行內框的高度。
以下是可能的值 -
正常 - 指示瀏覽器將元素中的行高設定為「合理」距離。
number - 元素中行的實際高度是該值乘以元素的字體大小。
length - 元素中行的高度是給定的值。
百分比 - 元素中行的高度是根據元素字體大小的百分比計算。
現在讓我們看一個使用 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區塊內?的詳細內容。更多資訊請關注PHP中文網其他相關文章!