codecamp

CSS font-variant 属性

CSS font-variant 属性

实例

把段落设置为小型大写字母字体:

p.small
{
font-variant:small-caps;
}

尝试一下 »

属性定义及使用说明

font-variant 属性设置小型大写字母的字体显示文本,这意味着所有的小写字母均会被转换为大写,但是所有使用小型大写字体的字母与其余文本相比,其字体尺寸更小

font-variant 属性主要用于定义小型大写字母文本

默认值: normal
继承: yes
版本: CSS1
JavaScript 语法: object.style.fontVariant="small-caps"


浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性          
font-variant 1.0 4.0 1.0 1.0 3.5

属性值

描述
normal默认值。浏览器会显示一个标准的字体。
small-caps浏览器会显示小型大写字母的字体。
inherit规定应该从父元素继承 font-variant 属性的值。


相关文章

CSS 教程: CSS Font

CSS 参考手册: font 属性

CSS font-style 属性
CSS font-weight 属性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

CSS属性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }