1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #i1{ width: 180px; height: 30px; padding-left: 10px; outline: none; border:1px solid lightgray; border-radius: 6px; } #i1:focus{ border-color: skyblue; } </style> </head> <body> <input type="text" id="i1" placeholder="请输入账号"/> <button>登录</button> </body> </html>
|