Somehow it seems like people tend to shy away from using the CSS font shorthand. Maybe because it’s so damn hard to remember how to declare it. Well here you go, you can omit everything except font-size and font-family:
font: italic small-caps bold 18px/120% "Josefin Sans", sans-serif;
Is equivalent to this:
font-style: italic;
font-variant: small-caps;
font-weight: bold;
font-size: 18px;
line-height: 120%;
font-family: "Josefin Sans", sans-serif;
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!