批改状态:未批改
老师批语:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登陆页面</title>
<style type="text/css">
*{margin: 0;padding: 0;}
body{
background: #151517
}
div{
width: 400px;
height: 350px;
margin: 200px auto;
background: rgba(188,185,198,0.4);
border-radius: 10px;
text-align:center;
}
img{
width: 80px;
border-radius: 50%;
margin-top: 15px;
}
input{
width: 300;
height:30;
margin-top: 15px;
border-radius: 6px;
border: none;
}
button{
border:none;
width: 100px;
height:35px;
border-radius: 6px;
background: #151517;
color: red;
margin-top: 15px;
}
</style>
</head>
<body>
<div>
<img src="static/images/3.jpg">
<form>
<input type="text" name="" placeholder="请输入用户名"><br>
<input type="password" name="" placeholder="请输入密码"><br>
<button>登陆</button>
</form>
</div>
</body>
</html>点击 "运行实例" 按钮查看在线实例
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号