主頁
CSS
CSS 高度/寬度
試一試:使用 max-width 和 min-width
執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { max-width: 400px; min-width: 100px; background-color: powderblue; } </style> </head> <body> <h2>Set the max-width and min-width of an element</h2> <p>Resize the browser window to see the effect.</p> <div>This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</div> </body> </html>