HTML DOM marginRight ÊôÐÔ
¶¨ÒåºÍÓ÷¨
marginRight ÊôÐÔÉèÖÃÔªËØµÄÓÒÍâ±ß¾à¡£
Óï·¨£º
Object.style.marginRight=auto|length|%
¿ÉÄܵÄÖµ
Öµ | ÃèÊö |
---|---|
auto | ä¯ÀÀÆ÷ÉèÖõÄÍâÓұ߾ࡣ |
length | ¶¨Òå¹Ì¶¨µÄÍâÓұ߾ࡣĬÈÏÖµÊÇ 0¡£ |
% | ¶¨Òå»ùÓÚ¸¸¶ÔÏó×ܸ߶ȵİٷֱÈÍâÓұ߾ࡣ |
ʵÀý
ÏÂÃæµÄÀý×ӸıäÁ˶ÎÂäµÄÓÒÍâ±ß¾à£º
<html>
<head>
<style type="text/css">
p
{
text-align: right
}
</style>
<script type="text/javascript">
function changeMargin()
{
document.getElementById("p1").style.marginRight="32px";
}
</script>
</head>
<body>
<input type="button" onclick="changeMargin()"
value="Change the right margin of a paragraph" />
<p>This is a paragraph</p>
<p id="p1">This is a paragraph</p>
<p>This is a paragraph</p>
</body>
</html>