Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 780 Bytes

avoid-using-the-b-i-s-and-u-tags.mdx

File metadata and controls

18 lines (15 loc) · 780 Bytes
category cover created tags title
Practice
/assets/tips/avoid-bisu-tags.png
2021-05-13
Accessibility, HTML
Avoid using the <b>, <i>, <s> and <u> tags

These tags are often used for styling purposes. It's recommended not to use them. Instead, use the semantic tags or CSS styles that provide the same appearances.

Tag Recommended way
<b> <strong>
<i> <em>
<s> text-decoration: line-through
<u> text-decoration: underline

For more information about the differences between these tags , please take a look at <b>, <i> vs <strong>, <em>.