代码示例:(标识:cssref_default_s)
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
s {
  text-decoration: line-through;
}
</style>
</head>
<body>

<p>默认情况下,s 元素会这样显示:</p>

<p><s>Some no-longer correct text.</s></p>

<p>自定义的 s 元素(更改 text-decoration):</p>

<p><s style="text-decoration:underline;">Some no-longer correct text.</s></p>

</body>
</html>
运行结果: