<s> - HTML(超文本标记语言) 编辑

HTML <s> 元素 使用删除线来渲染文本。使用 <s> 元素来表示不再相关,或者不再准确的事情。但是当表示文档编辑时,不提倡使用 <s> ;为此,提倡使用 <del> 和 <ins> 元素。

内容分类短语内容 or 流式内容
允许的内容短语内容
标签省略不允许,开始标签和结束标签都不能省略。
允许的父元素任何接受短语内容的元素
允许的 ARIA 角色任意
DOM 接口HTMLElement

属性

这个元素仅仅包含 全局属性

实现注解: 直到 Gecko1.9.2(包含),Firefox 为这个元素实现了 HTMLSpanElement 接口。

示例

<s>Today's Special: Salmon</s> SOLD OUT<br>
<span style="text-decoration:line-through;">Today's Special:
  Salmon</span> SOLD OUT

结果

Today's Special: Salmon SOLD OUT
Today's Special: Salmon SOLD OUT

Accessibility concerns

The presence of the s element is not announced by most screen reading technology in its default configuration. It can be made to be announced by using the CSS content property, along with the ::before and ::after pseudo-elements.

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] ";
}

Some people who use screen readers deliberately disable announcing content that creates extra verbosity. Because of this, it is important to not abuse this technique and only apply it in situations where not knowing content has been struck out would adversely affect understanding.

规范

规范状态注释
HTML Living Standard
s element
Living Standard
HTML5
s element
Recommendation

浏览器兼容性

BCD tables only load in the browser

参见

  • <strike> 元素,另一个 <s> 元素,已经废除并且不应再用于 Web 站点。
  • <del> 元素用于代替,如果数据已经删除了。
  • CSS text-decoration-line-through 属性也用于为 <s> 元素实现前者的视觉效果。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:95 次

字数:6290

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文