如何将文本(水平和垂直)居中放置在 div 块内?


我们可以轻松地将文本水平和垂直居中放置在 div 内。让我们逐一看看它们。

使用 text-align 属性水平居中 div 中的文本

要水平居中 div 中的文本,请使用 text-align 属性。text-align 属性决定块级元素内行框的对齐方式。以下是可能的取值:

  • left - 每个行框的左边缘与块级元素内容区域的左边缘对齐。

  • right - 每个行框的右边缘与块级元素内容区域的右边缘对齐。

  • center - 每个行框的中心与块级元素内容区域的中心对齐。

  • justify - 每个行框的边缘应与块级元素内容区域的边缘对齐。

  • string - 列中单元格的内容将与给定的字符串对齐。

示例

现在让我们使用 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 属性。现在让我们来看一个例子。

<!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 属性允许您指定元素的内容与其边框之间应留出多少空间。可以使用以下 CSS 属性来控制列表。您还可以使用以下属性为框的每一侧设置不同的填充值:

  • padding-bottom 指定元素的底部填充。
  • padding-top 指定元素的顶部填充。
  • padding-left 指定元素的左侧填充。
  • padding-right 指定元素的右侧填充。
  • padding 作为前面属性的简写。

示例

现在让我们来看一个使用 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 属性修改构成文本行的内联框的高度。

以下是可能的取值:

  • normal - 指示浏览器将元素中行的“合理”距离设置为高度。

  • number - 元素中行的实际高度是此值乘以元素的字体大小。

  • length - 元素中行的高度是给定的值。

  • percentage - 元素中行的高度计算为元素字体大小的百分比。

示例

现在让我们来看一个使用 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>

更新于:2022年10月17日

8K+ 次浏览

启动您的 职业生涯

完成课程后获得认证

开始学习
广告