Blogger Information
Blog 17
fans 1
comment 1
visits 16493
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
登录框制作
雷国恩的博客
Original
1094 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
	*{margin:0px;padding:0px;}
		body{height:600px;background:linear-gradient(to bottom,blue,#B4DDEE);}

		.login{
				margin: 100px auto;
				width: 400px;
				height: 300px;
				background: rgba(230,247,241,0.2);
				border-radius: 5px;
				text-align: center;
		}
		input{width:250px;height:40px;margin:20px auto;border-radius:2px;border: none;padding-left:10px;}
		input:focus{outline:pink solid 5px;}
		button{
			display: block;
			width: 260px;
			height: 40px;
			margin: 15px auto;
			background:#7AC23C;
			border:none;
			border-radius: 3px;
			color: #ffffff;
			font-size: 18px;
		}
		button:hover{cursor:pointer;background-color: #49D27B;}
	</style>
</head>
<body>
	<div class="login">
		<img src="" alt="">
		<form action="" >
			<input type="text" name="username" placeholder="请输入用户名">
			<input type="password" name="password" placeholder="请输入密码">
			<button>登  录</button>
		</form>
	</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!