CSS Font shorthand?

后端 未结 2 1207
日久生厌
日久生厌 2020-12-21 18:23

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

相关标签:
2条回答
  • 2020-12-21 19:23

    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
    
    0 讨论(0)
  • 2020-12-21 19:27

    minimal specifications are size and font-name. In your case it will look like this:

    .main{
     font: 1em  verdana;
    }
    
    0 讨论(0)
提交回复
热议问题