I was reading that font weight is an optional value in the Short-Hand Font Property. Yet, if I don't state it, it will make everything font-weight: normal
, including strong
and heading elements. Can someone clarify this for me.
* {
font: 100%/1.3 serif;
}
<h1>Heading one</h1>
<p>First paragraph.</p>
<p>Another paragraph, with <b>bold</b> and <strong>strong</strong>.</p>