<!DOCTYPE html>
<html>
<head>
<style>
del {background-color: tomato;}
ins {background-color: yellow;}
</style>
</head>
<body>
<h1>del 和 ins 元素 + CSS</h1>
<p>我喜欢的颜色是<del>蓝色</del><ins>红色</ins>!</p>
</body>
</html>