搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <title>HTML:<img> vspace 属性 - 大卫编程网 div.cn</title> <body> <h4>没有vspace的图像:</h4> <p><img src="smiley.gif" alt="Smiley face" width="42" height="42" align="middle"> This is some text. This is some text. This is some text.</p> <h4>有vspace的图像:</h4> <p><img src="smiley.gif" alt="Smiley face" width="42" height="42" align="middle" vspace="38">This is some text. This is some text. This is some text.</p> </body> </html>
运行结果