HTML DOM Image vspace 属性
最后更新于:2022-03-26 22:22:34
Image vspace 属性
定义和用法
vspace 属性设置或返回图像的顶部和底部的空白。
space 和 vspace 属性可与 align 一同使用,来设置图像与周围文本的距离。
语法
imageObject.vspace=pixels
浏览器支持
所有主要浏览器都支持 vspace 属性
实例
实例
下面的例子将设置图像的 hspace 和 vspace 属性:
<html>
<head>
<script>
function setSpace()
{
document.getElementById(“compman”).hspace=”50″;
document.getElementById(“compman”).vspace=”50″;
}
</script>
</head>
<body>
<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>