欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM textDecoration 屬性

HTML DOM Style 對(duì)象參考手冊(cè)

定義和用法

textDecoration 屬性對(duì)文本進(jìn)行修飾。

語(yǔ)法:

Object.style.textDecoration=none|underline|overline|line-through|blink

可能的值

描述
none 默認(rèn)。定義標(biāo)準(zhǔn)的文本。
underline 定義文本下的一條線。
overline 定義文本上的一條線。
line-through 定義穿過(guò)文本下的一條線。
blink 定義閃爍的文本(無(wú)法運(yùn)行在 IE 和 Opera 中)。

實(shí)例

本例給文本設(shè)置下劃線:

<html>
<head>
<script type="text/javascript">
function setTextDecoration()
{
document.getElementById("p1").style.textDecoration="overline";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph.</p>

<input type="button" onclick="setTextDecoration()"
value="Set text-decoration" />

</body>
</html>

HTML DOM Style 對(duì)象參考手冊(cè)