主頁
CSS
CSS 高度/寬度
Tryit:max-width 屬性
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,暗/亮
轉到 Spaces
<!DOCTYPE html> <html> <head> <style> div { max-width: 500px; height: 100px; background-color: powderblue; } </style> </head> <body> <h2>Set the max-width of an element</h2> <div>This div element has a height of 100px and a max-width of 500px.</div> <p>Resize the browser window to see the effect.</p> </body> </html>