web登录界面




            
    
    文本框
    



    

注册

忘记密码?

登录
@charset "utf-8";
/* CSS Document */
/*页面整体布局*/
.mr-cont{
	width:  500px;
    height: 539px;
	margin: 0px 600px;
	background: url(bg.png) no-repeat left top;   /*添加背景图片*/
    background-position:center;
    position:relative;
    z-index: 1;
}
/*表单整体位置*/
form{
	padding: 140px 400px;
}
label{
	color: green;
	display: block;
	padding-top: 10px;
	position: relative;
}
/*设置单行文本框和密码框的样式*/
label input{
	height: 25px;
	width: 200px;
	position: absolute;
    background-color: red;
}
label img{
	height: 28px;
}

.txt{
	display: block;
	margin: 10px;
    margin-left:-250px;
	width: 200px;
	height: 20px;
	background: url("user.png") no-repeat;
    background-size: 23px;
	text-indent: 28px;
}

.password{
	display: block;
	margin-left: -250px;
	margin-top:40px;
	width: 200px;
	height: 20px;
	background: url("pass.png") no-repeat;
    background-size: 23px;
	text-indent: 28px;
	
}

.h{
    position:absolute;
    width: 1600px;
    margin: 310px 810px ;
    z-index: 2;
}
.hh{position:absolute;
    width: 1600px;
    margin: 310px 850px ;
    z-index: 2;

}
.button {
    border-radius:5px;
    position:absolute;
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 300px 700px;
    cursor: pointer;
    z-index: 2;
}

你可能感兴趣的:(前端,html5,css,前端,html)