亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM vspace 屬性

定義和用法

vspace 屬性設(shè)置或返回圖像的頂部和底部的空白。

Thspace 和 vspace 屬性可與 align 一同使用,來設(shè)置圖像與周圍文本的距離。

語法

imageObject.vspace=pixels

實(shí)例

下面的例子將設(shè)置圖像的 hspace 和 vspace 屬性:

<html>
<head>
<script type="text/javascript">
function setSpace()
{
document.getElementById("compman").hspace="50"
document.getElementById("compman").vspace="50"
}
</script>
</head>
<body>

<img id="compman" src="compman.gif" alt="Computerman" align="right" />

<p>Some text. Some text. Some text. Some text.</p>

<input type="button" onclick="setSpace()"
value="Set hspace and vspace">

</body>
</html>