通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
#### 》》》如果先写font,再写line-height,显示效果正常 #### 》》》如果先写line-height,再写font,则line-height定义的效果会丢失,在IE、谷歌、Firefox、Opera下都出现这种BUG ps:这里指的是font,非font-size,font-size和line-hight之间没有顺序之分,无论先写谁都可以,效果都一样 列: 先font,后line-hight, `<h1 style="background:#f00;margin:5px 0;font:bold 20px 宋体,Geneva,Arial,sans-serif;line-height:40px;">IECN.Net - 专注Web技术,体验开发乐趣!</h1> ` 先line-hight后font `<h1 style="background:#f00;margin:5px 0;line-height:40px;font:bold 20px 宋体,Geneva,Arial,sans-serif;">IECN.Net - 专注Web技术,体验开发乐趣!</h1> ` 效果: 先font后line-hight的 效果正常 <h1 style="background:#f00;margin:5px 0;font:bold 20px 宋体,Geneva,Arial,sans-serif;line-height:40px;">IECN.Net - 专注Web技术,体验开发乐趣!</h1> 先line-hight后font的 效果不正常 <h1 style="background:#f00;margin:5px 0;line-height:40px;font:bold 20px 宋体,Geneva,Arial,sans-serif;">IECN.Net - 专注Web技术,体验开发乐趣!</h1> 留意:font的定义参数必须按照如下的排列顺序 font : font-style || font-variant || font-weight || font-size || line-height || font-family