div中的文字内容垂直居中

tech2022-08-06  165

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .box{ width:200px; height:100px; text-align: center; background-color: bisque; line-height:100px; } </style> </head> <body> <div class="box">我是大飞哥</div> </body> </html>

height和line-height和值要相等,注意这仅适应于文字只有一行的情况。

最新回复(0)