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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。