font和line-height之CSS代码书写顺序不同,导致显示效果不一样
程序员文章站
2024-02-27 16:20:09
无意中发现,针对同一html标记,在css中同时应用了font和line-height属性时,就得小心了,这二者的书写顺序不一样,会导致显示效果不同。 即: >>...
无意中发现,针对同一html标记,在css中同时应用了font和line-height属性时,就得小心了,这二者的书写顺序不一样,会导致显示效果不同。
即:
>>> 如果先写font,再写line-height,显示效果正常
>>> 如果先写line-height,再写font,则line-height定义的效果会丢失,在ie、firefox、opera下都出现这种bug
具体效果请看以下代码:
<p>h1:</p>
<h1 style="background:#f00;margin:5px 0;font:bold 20px 宋体,geneva,arial,sans-serif;line-height:40px;">iecn.net - 专注web技术,体验开发乐趣!</h1>
<h1 style="background:#f00;margin:5px 0;line-height:40px;font:bold 20px 宋体,geneva,arial,sans-serif;">iecn.net - 专注web技术,体验开发乐趣!</h1>
<p>div:</p>
<div style="background:#f00;margin:5px 0;font:bold 20px 宋体,geneva,arial,sans-serif;line-height:40px;">iecn.net - 专注web技术,体验开发乐趣!</div>
<div style="background:#f00;margin:5px 0;line-height:40px;font:bold 20px 宋体,geneva,arial,sans-serif;">iecn.net - 专注web技术,体验开发乐趣!</div>
原文:http://www.cnlei.org/blog/article.asp?id=343
注:看了枫岩的留言,去查了下css帮助文档
引用
对font的定义参数必须按照如下的排列顺序。每个参数仅允许有一个值。忽略的将使用其参数对应的独立属性的默认值:
font : font-style || font-variant || font-weight || font-size || line-height || font-family
例子:p { font: italic small-caps 600 12pts/18pts 宋体; }
作者:ztu http://www.dnew.cn/post/217.htm#topreply
即:
>>> 如果先写font,再写line-height,显示效果正常
>>> 如果先写line-height,再写font,则line-height定义的效果会丢失,在ie、firefox、opera下都出现这种bug
具体效果请看以下代码:
<p>h1:</p>
<h1 style="background:#f00;margin:5px 0;font:bold 20px 宋体,geneva,arial,sans-serif;line-height:40px;">iecn.net - 专注web技术,体验开发乐趣!</h1>
<h1 style="background:#f00;margin:5px 0;line-height:40px;font:bold 20px 宋体,geneva,arial,sans-serif;">iecn.net - 专注web技术,体验开发乐趣!</h1>
<p>div:</p>
<div style="background:#f00;margin:5px 0;font:bold 20px 宋体,geneva,arial,sans-serif;line-height:40px;">iecn.net - 专注web技术,体验开发乐趣!</div>
<div style="background:#f00;margin:5px 0;line-height:40px;font:bold 20px 宋体,geneva,arial,sans-serif;">iecn.net - 专注web技术,体验开发乐趣!</div>
原文:http://www.cnlei.org/blog/article.asp?id=343
注:看了枫岩的留言,去查了下css帮助文档
引用
对font的定义参数必须按照如下的排列顺序。每个参数仅允许有一个值。忽略的将使用其参数对应的独立属性的默认值:
font : font-style || font-variant || font-weight || font-size || line-height || font-family
例子:p { font: italic small-caps 600 12pts/18pts 宋体; }
作者:ztu http://www.dnew.cn/post/217.htm#topreply
上一篇: PHP文件下载实例代码浅析
下一篇: ln 软链命令