首页
CSS
CSS 高度/宽度
Tryit:高度和宽度属性
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> img.one { height: auto; } img.two { height: 200px; width: 200px; } div.three { height: 300px; width: 300px; background-color: powderblue; } </style> </head> <body> <h2>Set the height and width of elements</h2> <p>Original image:</p> <img class="one" src="ocean.jpg" width="300" height="300"><br> <p>Sized image (200x200 pixels):</p> <img class="two" src="ocean.jpg" width="300" height="300"><br> <p>The height and width of this div element is 300px:</p> <div class="three"></div> </body> </html>