DEV Community

Cover image for HTML tags | s
Carlos Espada
Carlos Espada

Posted on • Edited on

3 1

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 announcing content 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

Image of Docusign

Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more

Top comments (1)

Collapse
 
susomejias profile image
Jesús Mejías Leiva

🙌

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more