搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<!DOCTYPE html> <html> <body> <h4>Object with no margins:</h4> <p><object width="150" height="150" data="helloworld.swf"></object> This is some text. This is some text. This is some text.</p> <h4>Object with 100px margins on left and right sides:</h4> <p><object width="150" height="150" data="helloworld.swf" style="margin:0px 100px"></object> This is some text. This is some text. This is some text.</p> </body> </html>
运行结果