运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> img.normal { width: auto; } img.big { width: 50%; } img.small { width: 10%; } </style> </head> <body> <h1>The width Property</h1> <img class="normal" src="logocss.gif" width="95" height="84"><br> <img class="big" src="logocss.gif" width="95" height="84"><br> <img class="small" src="logocss.gif" width="95" height="84"> </body> </html>