(no title)
SoraNoTenshi | 2 years ago
What was also surprising is that there is a Slider as well as Color picker element.
Fair enough i am not much of a web person myself, but i know that a lot of webpages have their own custom JavaScript implementation of those elements (if needed).
zelphirkalt|2 years ago
It is in the names:
<em> = emphasized, as in "this part of the text should be emphasized in whatever way the styling dictates
<i> = italic, just a way to style directly
<strong> = strongly emphasized
<b> = bold, just a way to style directly
<i> and <b> do not make a statement about semantics, they are for styling, and probably not much used in modern valid HTML, or at least should not, if you have CSS available. <em> and <strong> make statements about importance of a part of text, in whatever way you want to style that. It just happens, that the default styling for those is italic and bold.