I'm having trouble deciding whether to use <strong>
or font-weight:bold
in the following situation. There is a list of various properties of a school. Each list item is the property name in bold, followed by the property value for this specific school. I understand that <strong>
is used to emphasize a word or phrase in the context of the surrounding text, but I can't decide if a property name correctly fits that designation.
Here are the two options:
<!-- The class bold sets the font-weight to bold -->
<li><span class="bold">Setting:</span> Suburban</li>
or
<li><strong>Setting:</strong> Suburban</li>