国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)htmltext_decorationCSS Property Value - 如何撤消刪除

CSS Property Value - 如何撤消刪除

我們想知道如何撤消刪除。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.strikethrough {
  text-decoration: line-through;
  color: blue;
}

.no-strikethrough {
  display: inline-block;
  text-decoration: none;
  color: red;
}

.no-strikethrough:before {
  content: '\00a0';
}
</style>
</head>
<body>
  <h1 class="strikethrough">
    stricken<span class="no-strikethrough"> no strike</span>
  </h1>
</body>
</html>