首页
HTML
HTML 属性
试用:width 和 height 属性
运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>Width and Height Attributes</h2> <p>The width and height attributes of the img tag, defines the width and height of the image:</p> <img src="img_girl.jpg" width="500" height="600"> </body> </html>