下面图老师小编要向大家介绍下CSS:font-style,看起来复杂实则是简单的,掌握好技巧就OK,喜欢就赶紧收藏起来吧!
【 tulaoshi.com - Web开发 】
font-style版本:CSS1 兼容性:IE4+ NS4+ 继承性:有
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)语法:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)font-style : normal | italic | oblique
取值:
normal : 默认值。正常的字体
italic : 斜体。对于没有斜体变量的特殊字体,将应用 oblique
oblique : 倾斜的字体
说明:
设置或检索对象中的字体样式。
对于此属性的默认值来说,IE提供了预定义样式。但是你可以在浏览器菜单的 Internet 选项 中更改它。
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 fontStyle 。
示例:
p { font-style: normal; }
p { font-style: italic; }
p { font-style: oblique; }
来源:http://www.tulaoshi.com/n/20160219/1612604.html
看过《CSS:font-style》的人还看了以下文章 更多>>