HTML写一个登录框样式

以QQ空间的登陆框为例,原先的代码很复杂,还涉及了其他的知识,对于刚刚接触的人来说想写一点点样式来练练手的话可以看一下。
写好之后是这个样子
样式一样,但写法很多,只是一种而已
下面是代码

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<style type="text/css">
			body{
				background-color: gray;
			}
			.wrap{
				width: 414px;
				height: 312px;
				border: solid rgb(238,238,238) 2px;
				background-color: white;
				/*margin: 0px auto;*/
			}
			.wrap .title{
				margin-top: 6px;
				margin-bottom: 16px;
				font-size: 20px;
				color: rgb(51,51,51);
				text-align: center;/*居中*/
				
			}
			.wrap .infor{
				text-align: center;
				color: #666;
				font-size: 16px;
				margin-bottom: 36px;
				
			}
			.wrap .infor a{
				text-decoration: none;
				color:#3481cf;
			}
			.wrap #form{
				text-align: center;
				height:150px ;
				width: 272px;
				margin: 0px auto;
				
			}
			.wrap #form .input{
				height: 38px;
				width: 268px;
				box-sizing: border-box;
				padding: 10px;
				padding-right: 0px;
				margin-bottom: 17px;
				border-radius: 3px;
				border: solid rgb(214,214,21)  1px;
			}
			.wrap #form #btn{
				border-radius: 3px;
				height: 37px;
				width: 258px;
				padding: 1px 7px 2px 7px;
				box-sizing: content-box;
				border: none;
				background-color:rgb(136,210,48) ;
				color: white;
				font-size: 17px;
			}
		</style>
	</head>
	<body>
		<div class="wrap"><!--登录框的最外部的框框-->
			<div class="title"><!--账号密码字体存放的div-->
				账号密码登录
			</div>
			<div class="infor"> <!--第二行字存放的div-->
				推荐使用<a href="">快速安全登录</a>,防止盗号。
			</div>
			<form action="" method="post" id="form"> <!--账号密码登录的一个from表单-->
				<input type="text" class="input" placeholder="支持QQ号/邮箱/手机号登录"/>
				<input type="text"class="input" placeholder="密码"/>
				<button type="button" id="btn">登 录</button>
				<!--简单来讲就是一个大的方块(wrap)包含了title,infor,from三大块的信息,from中又包含了账号,密码,登录三个块块-->
				
			</form>
		</div>
		
	</body>
</html>
可以按照如下 HTML 代码来制作一个登录: ```html <!DOCTYPE html> <html> <head> <title>登录</title> <style> /* 样式表 */ .login { width: 300px; margin: 50px auto; border: 1px solid #ccc; padding: 20px; box-shadow: 0 0 10px #ccc; text-align: center; font-size: 16px; } .login input { width: 100%; height: 32px; line-height: 32px; margin-bottom: 10px; padding-left: 10px; font-size: 16px; border: 1px solid #ccc; border-radius: 3px; outline: none; } .login button { width: 100%; height: 40px; line-height: 40px; margin-top: 10px; font-size: 18px; background-color: #4CAF50; color: #fff; border: none; border-radius: 3px; cursor: pointer; } .login button:hover { background-color: #3e8e41; } </style> </head> <body> <div class="login"> <h2>登录</h2> <form> <input type="text" placeholder="用户名" name="username" required> <input type="password" placeholder="密码" name="password" required> <button type="submit">登录</button> </form> </div> </body> </html> ``` 以上代码中,我们用了一个 div 元素来包裹整个登录,并为其设置了一些基本样式,比如宽度、边、内边距、阴影等。接下来,在登录内部,我们使用了一个 h2 元素来显示标题,一个 form 元素来包裹输入框登录按钮。在输入框和按钮上,我们分别应用了一些样式来美化它们的外观,比如边、圆角、背景色等。最后,我们还为按钮设置了 hover 样式,使其在鼠标悬停时变色,增加了一些交互效果。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值