<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表单练习</title>
    <style type="text/css">
form{ width: 400px; background: #9370d8;padding: 10px;margin-left: 500px;margin-top: 150px;}
button{background: #808080;padding: 8px;border-radius: 5px;}
button.hover{background: #2F4F4F;padding: 10px;border-radius: 5px;}
input{padding: 8px;background: #f8f8f8;}
input:focus{background: #FFC0CB;}
    </style>
</head>
<body>
    <form action="">
    <fieldset>
        <legend>注册用户</legend>
            <p><label for="user">账户</label><input type="text" name="user" ></p> -->
    <button>注册用户</button>
    </fieldset>                
    </form>
</body>
</html>

相关文章:

  • 2021-06-14
  • 2021-07-08
  • 2022-12-23
  • 2021-06-22
  • 2021-05-26
  • 2022-12-23
  • 2021-08-07
  • 2022-01-10
猜你喜欢
  • 2021-09-04
  • 2022-01-19
  • 2021-12-26
  • 2021-12-12
  • 2021-05-05
相关资源
相似解决方案