关于css中line-height(行高)设置无效的问题的解决方法

时间:2021-05-08

关于css中line-height(行高)设置无效的问题

我们先写下这一串代码:

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .head{ height: 100px; text-align: center; line-height: 100px; background: #333; color: red; font:700 18px simsun; } </style></head><body> <div class="head"> 你好,西南石油大学。 </div></body></html>

然后在浏览器中打开看看效果:

我们发现在垂直方向,字体并没有在盒子的中间显示。

然后我们把设置行高那条语句放在设置字体(font)的下面:

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .head{ height: 100px; text-align: center; background: #333; color: red; font:700 18px simsun; line-height: 100px; } </style></head><body> <div class="head"> 你好,西南石油大学。 </div></body></html>

然后用浏览器打开:

字体就成功地跳到中间去啦~~~~~

总结:在用css对行高进行设置时,line-height的属性必须在font的下面,否则无效!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章