HTML DOM Image hspace 属性用于设置或返回 Image 元素的 hspace 属性值。 hspace 属性用于指定图像左侧和右侧的空格数。
用法:
它设置图像 hspace 属性。
Imageobject.hspace="pixels";
它返回 Image hspace 属性。
Imageobject.hspace;
属性值:它包含值,即指定图像左侧和右侧空白数量的像素。
范例1:下面的代码示例返回 Image hspace 属性。
HTML
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML DOM Image hspace Property</h2>
<p> <img id="GFG" hspace="25" align="middle"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
alt="GeeksforGeeks logo">
It is a computer science portal for Geeks.
</p>
<br>
<button onclick="Geeks()">Click me!</button>
<p id="sudo"></p>
</center>
<script>
function Geeks() {
var g = document.getElementById("GFG").hspace;
document.getElementById("sudo").innerHTML = g + "px";
}
</script>
</body>
</html>
输出:
范例2:在此示例中,代码设置 Image hspace 属性。
HTML
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML DOM Image hspace Property</h2>
<p> <img id="GFG" hspace="25" align="middle"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
alt="GeeksforGeeks logo">
It is a computer science portal for Geeks.
</p>
<br>
<button onclick="Geeks()">Click me!</button>
<p id="sudo"></p>
</center>
<script>
function Geeks() {
var g = document.getElementById("GFG").hspace;
document.getElementById("sudo").innerHTML = g + "px";
}
</script>
</body>
</html>
输出:
相关用法
- HTML DOM Object hspace属性用法及代码示例
- HTML <img> hspace属性用法及代码示例
- HTML <object> hspace属性用法及代码示例
- HTML Marquee hspace用法及代码示例
- HTML applet hspace用法及代码示例
- HTML DOM Image isMap属性用法及代码示例
- HTML image naturalWidth用法及代码示例
- HTML image naturalHeight用法及代码示例
- HTML Input Image src用法及代码示例
- HTML Input Image width用法及代码示例
- HTML Input Image type用法及代码示例
- HTML Input Image name用法及代码示例
- HTML Input Image value用法及代码示例
- HTML input image height用法及代码示例
- HTML Input Image formEnctype用法及代码示例
- HTML Input Image formNoValidate用法及代码示例
- HTML Input Image formAction用法及代码示例
- HTML Input Image alt用法及代码示例
- HTML Input image autofocus用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input Image form用法及代码示例
- HTML Image name用法及代码示例
- HTML Image complete用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML DOM Image hspace Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。