The CSS font property is a shorthand property for setting thefont-style,font-variant,font-weight,font-size,line-height, andfont-familyCSS properties. Syntax The syntax for the font CSS property is: font:font-style font-variant font-weight font-size [/ line-height] font-family; ...
在很多情况下,由于系统作了最相近的匹配,因此看不出不同的 font-weight 值有什么区别。 font-weight 值为400,相当与 normal,即正常字体,而值 700,相当于粗体 bold。如果值为 bolder 或者 lighter,则是相对其父对象来说的。如果父对象的值为 normal,子对象值设为 bolder,则最终以 bold,即粗体显示。 示例代码...
CSS Property - Font Value: [ <font-style> || <font-variant> || <font-weight> ]? <font-size> [ / <line-height> ]? <font-family> Initial: not defined for shorthand properties Applies to: all elements Inherited: yes Percentage values: allowed on <font-size> and <line-height> ...
CSS font Property« Previous Complete CSS Reference Next » Example Specify all the font properties in one declaration: p.ex1 { font: 15px arial, sans-serif; } p.ex2 { font: italic bold 12px/30px Georgia, serif; } Try it yourself » ...
h1 { font: bold 2.5em "Times New Roman", Times, serif; } p { font: normal 1.2em Arial, Helvetica, sans-serif; }Property ValuesThe following table describes the values of this property.ValueDescription font-style Sets the font style. font-variant Sets the font variant. font-weight Sets ...
<font-style>See the font-style CSS property for values. <font-variant>See the font-variant CSS property for values. <font-weight>See the font-weight CSS property for values. <font-size>See the font-size CSS property for values. <font-family>See the font-family CSS property for values....
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.
700 粗体,相当于bold。 800 至少和700一样粗,至少和800一样淡 900 至少和800一样粗 字体浓淡属性是根据用户电脑上安装的字体相应匹配改变的。在很多情况下,由于系统作了最相近的匹配,因此看不出不同的 font-weight 值有什么区别。 font-weight 值为400,相当与 normal,即正常字体,而值 700,相当于粗体 bold。