主頁
CSS
CSS 使用者介面
試一試:只允許調整高度
執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { border: 2px solid; padding: 20px; width: 300px; resize: vertical; overflow: auto; } </style> </head> <body> <h1>The resize Property</h1> <div> <p>Let the user resize only the height of this div element.</p> <p>To resize: Click and drag the bottom right corner of this div element.</p> </div> </body> </html>