HTML DOM align ÊôÐÔ
¶¨ÒåºÍÓ÷¨
align ÊôÐÔ¿ÉÉèÖ÷µ»ØÓëÄÚÁªÄÚÈÝµÄ¶ÔÆë·½Ê½¡£
Óï·¨
imageObject.align=left|right|top|middle|bottom
ʵÀý
ÏÂÃæµÄÀý×Ó°ÑͼÏñ¸ù¾ÝÖÜΧµÄÎı¾½øÐÐÓÒ¶ÔÆë£º
<html>
<body>
<img id="compman" src="compman.gif" alt="Computerman" />
<p>Some text. Some text. Some text. Some text.</p>
<script type="text/javascript">
document.getElementById("compman").align="right";
</script>
</body>
</html>