跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> input[type=text] { width: 150px; display: block; margin-bottom: 10px; background-color: yellow; } input[type=button] { width: 120px; margin-left: 35px; display: block; } </style> </head> <body> <h2>Стилизация формы</h2> <form name="input" action="" method="get"> Имя:<input type="text" name="Name" value="Peter" size="20"> Фамилия:<input type="text" name="Name" value="Griffin" size="20"> <input type="button" value="Пример кнопки"> </form> </body> </html>