时间:2021-07-01 10:21:17 帮助过:95人阅读
语法:
font-variant : normal | small-caps
参数:
normal : 正常的字体
small-caps : 小型的大写字母字体
说明:
设置或检索对象中的文本是否为小型的大写字母。
对应的脚本特性为fontVariant。请参阅我编写的其他书目。
text-transform的text-transform和font-variant区别
text-transform和font-variant都能把英文文本转换大小写。但是font-variant唯一的作用就是把英文文本转换成“小型”大写字母文本,注意这是“小型”的。一般极少用到font-variant属性,对于英文的大小写转换,我们用的是text-transform属性,而不是用font-variant属性。
font-variant属性的实例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS font-variant 属性示例</title> <style type="text/css" media="all"> p#small-caps { font-variant:small-caps; } p#uppercase { text-transform:uppercase; } </style> </head> <body> <p id="small-caps">The quick brown fox jumps over the lazy dog.</p> <p id="uppercase">The quick brown fox jumps over the lazy dog.</p> </body> </html>
以上就是css属性中fontVariant的介绍与实例的详细内容,更多请关注Gxl网其它相关文章!