執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> input[type="text"] { width: 100px; -webkit-transition: width .35s ease-in-out; transition: width .35s ease-in-out; } input[type="text"]:focus { width: 250px; } </style> </head> <body> <h1>The width Property</h1> <p>Set the width of the input field to 100 pixels. However, when the input field gets focus, make it 250 pixels wide:</p> Search: <input type="text" name="search"> </body> </html>