Shorthand Property
When styling fonts with CSS you may be doing this:font-weight: bold;
font-style: italic;
font-variant: small-caps;
When you can do this: (CSS shorthand property)
font: bold italic small-caps
More to come.
When styling fonts with CSS you may be doing this:font-weight: bold;
font-style: italic;
font-variant: small-caps;
When you can do this: (CSS shorthand property)
font: bold italic small-caps
More to come.
You must be logged in to post a comment.