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

App下載
首頁htmltext_decorationCSS Property Value - 如何text-decoration可能值

CSS Property Value - 如何text-decoration可能值

我們想知道如何text-decoration可能值。


The following code shows how to set the text-decoration Property.
<html>
<head>
<style>
p.underline {text-decoration:underline;}
p.overline {text-decoration:overline;}
p.line-through {text-decoration:line-through;}
p.blink {text-decoration:blink;}
</style>
</head>
<body>
    <h1>text-decoration</h1>
    <p class="underline">This text should be underlined</p>
    <p class="overline">This text should have a line over it</p>
    <p class="line-through">This text should have a line through it</p>
    <p class="blink">This text should be blinking</p>
</body>
</html>