DEV Community

Cover image for HTML tags | s
Carlos Espada
Carlos Espada

Posted on • Updated on

HTML tags | s

It is used to indicate a text that is no longer correct, accurate or relevant, and that is usually rendered with a line through it.

It is not suitable for indicating edits in a document, that's what the <del> and <ins> elements exist for.

The presence of the <s> element is not advertised in most screen readers with the default settings. You can force your ad using the content property of CSS as well as the ::before and ::after pseudo-elements as follows:

s::before,
s::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

s::before {
  content: " [start of stricken text] ";
}

s::after {
  content: " [end of stricken text] ";
}
Enter fullscreen mode Exit fullscreen mode

Some screen reader users disable content ad to avoid excessive verbosity. So it is important not to abuse this technique, avoiding using it whenever possible, except in situations where not knowing that there is a crossed-out content can adversely affect the understanding of the text.

  • Type: inline
  • Self-closing: No
  • Semantic value: No

Definition and example | Support

Oldest comments (1)

Collapse
 
susomejias profile image
Jesús Mejías Leiva

🙌