hspace
Image hspace 属性
定义和用法
hspace 属性可设置或者返回图片的 hspace 属性值。
hspace 属性指定图像的左边缘和右边缘的空白。
语法
imageObject.hspace=pixels
浏览器支持
所有主要浏览器都支持 hspace 属性
实例
下面的例子将设置图像的 hspace 和 vspace 属性:
<html>
<head>
<script>
function setSpace()
{
document.getElementById("compman").hspace="50";
document.getElementById("compman").vspace="50";
}
</script>
</head>
<body>
<img id="compman" src="compman.gif" alt="Computerman">
<p>Some text. Some text. Some text. Some text.</p>
<input type="button" onclick="setSpace()" value="Set hspace and vspace">
</body>
</html>
<head>
<script>
function setSpace()
{
document.getElementById("compman").hspace="50";
document.getElementById("compman").vspace="50";
}
</script>
</head>
<body>
<img id="compman" src="compman.gif" alt="Computerman">
<p>Some text. Some text. Some text. Some text.</p>
<input type="button" onclick="setSpace()" value="Set hspace and vspace">
</body>
</html>