HTML 删除和添加字

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title></title> 
</head>
<body>

<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>

</body>
</html>

结果:

My favorite color is blue red!

原文地址:https://www.cnblogs.com/henusyj-1314/p/9504511.html