Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

html - CSS Font shorthand?

I was basically trying to abbreviate "font-style" to just "font" by using the shorthand property. However, it only seems to work if I specify other properties (size/line height/font-family) too on the same selector.

If I comment out any additional specification, the "italic" is ignored! Am I missing something here or am I just not supposed to use

.main{font:italic;}

instead of (for instance)

.main{font-style:italic;}

or

.main{
font:italic 1em/1.2em georgia,"times new roman",serif;}

So, what's the minimum requirements for using the font shorthand?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The font-family and font-size are the minimum styles required for this style property.

Example:

font: 1em "Times New Roman", Times, serif;

An example of a full shorthand would be the following:

font: bold italic small-caps 1em/1.5em verdana,sans-serif

This would replace the original code below:

font-weight: bold;
font-style: italic;
font-variant: small-caps;
font-size: 1em;
line-height: 1.5em;
font-family: verdana,sans-serif

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...