欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS設(shè)置網(wǎng)頁圖片vspace和hspace屬性的方法

 更新時間:2015年04月01日 11:27:53   作者:瘋狂一夏  
這篇文章主要介紹了JS設(shè)置網(wǎng)頁圖片vspace和hspace屬性的方法,具體分析了vspace和hspace屬性的功能及javascript修改技巧,具有一定參考借鑒價值,需要的朋友可以參考下

本文實(shí)例講述了JS設(shè)置網(wǎng)頁圖片vspace和hspace屬性的方法。分享給大家供大家參考。具體分析如下:

hspace可以以像素為單位,指定圖像左邊和右邊的文字與圖像之間的間距;vspace 值則是上面的下面的文字與圖像之間的距離的像素數(shù)

<!DOCTYPE html>
<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"
width="107" height="98">
<p>Some text. Some text. Some text. Some text.</p>
<input type="button" onclick="setSpace()" 
value="Set hspace and vspace">
</body>
</html>

希望本文所述對大家的javascript程序設(shè)計有所幫助。

相關(guān)文章

最新評論