W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function setSpace() { document.getElementById("compman").hspace="50" document.getElementById("compman").vspace="50" } </script> </head> <body> <img id="compman" src="/i/eg_compman.gif" alt="Computerman" align="right" /> <p>Some text. Some text. Some text. Some text.</p> <input type="button" onclick="setSpace()" value="Set hspace and vspace"> </body> </html>