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

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

<p><ins>Some inserted text.</ins></p>

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

<p><ins style="text-decoration:line-through;">Some inserted text.</ins></p>

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