博客列表 >仿制登录页面小实战-2019-3-12

仿制登录页面小实战-2019-3-12

师太的小迷弟的博客
师太的小迷弟的博客原创
2019年03月13日 19:11:33719浏览

总结:

不熟悉的标签及属性

  1. no-repeat 不平铺

  2. background: linear-gradient渐变

  3. background-position:背景图片定位 x y坐标

  4. border-radius:边框圆角

  5. border-radius:50%;圆形

温习已背的标签以及熟悉

  1. !dcotype-html声明

  2. title标题

  3. mata元消息

  4. link外部样式

  5. href文件地址

  6. small小号字体

  7. strong着重语气

  8. text-indent首行缩进

  9. margin外间距

  10. padding内间距

实例

<!DOCTYPE html>
<html>
<head>
	<title>登录界面</title>
	<meta charset="utf-8">
	<style type="text/css">
		*{margin:0;padding:0;}
		body{
			background: #151517;
		}
		div{
			background: rgba(185,184,187,0.4);
			width: 500px;
			height: 400px;
			text-align:center;
			margin: 100px auto;	
			border-radius:10px;		
		}
		img{
			width:80px;
			height: 80px;
			border-radius: 50%;
			margin-top:50px;

		}
		input{
			width: 300px;
			height:40px;
			margin-top:15px;
			border-radius:6px;
			border:none;
			padding-left: 15px;
		}
		button{
			border: none;
			width: 200px;
			height:35px;
			border-radius: 6px;
			background: #151517;
			color:#fff;
			margin-top:15px;
		}
	</style>
</head>
<body>
	<div>
		<img src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1552483629728&di=4ba100a31f25acee76cd47526cbeb240&imgtype=0&src=http%3A%2F%2Fb-ssl.duitang.com%2Fuploads%2Fitem%2F201706%2F06%2F20170606042856_rHdnA.jpeg">
		<form action="" method="">
			<input type="text" name="" placeholder="请输入账号....."><br>
			<input type="password" name="" placeholder="请输入密码....."><br>
			<button>提交</button>
		</form>
	</div>
</body>
</html>
</html>

运行实例 »

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

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议