主頁
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>