求大神看看我的代码~~
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>登录框应用</title>
<style type="text/css">
div{
margin:0;
padding:0;
}
#first{
width:250px;
height:300px;
border: #CCC 1px solid;
background-color:#FFF;
}
#back{
width:90%;
height:90%;
background-color:#3CF;
margin:10px auto;
}
.1{
width:80%;
height:40%;
margin:0 auto;
}
.2{
width:80%;
height:10%;
margin:0 auto;
}
.3{
width:80%;
height:45%;
margin:10px auto;
}
.1-1{
margin:10px auto;
}
.3-1{
margin:10px auto;
}
.input{
height:100%;
margin-top:3px;
}
ul{
list-style:none;
}
span{
font-size:12px;
float:left;
}
li i{
background:url(%E6%8C%89%E9%92%AE.jpg);
}
.icon1{
background-position:0 -115px;
}
.icon2{
background-position:0 -30px;
}
.icon3{
background-position:0 -60px;
}
</style>
</head>
<body>
<div id="first">
<div id="back">
<div class="1"> <!--1模块为什么没有垂直居中,magin:0 auto好像没起作用啊。。。-->
<form class="1-1">
<input type="text" value="手机/邮箱/用户名" name="登录框" style="height:35px; width:150px; margin:5px 15px; background-color:#EDEDED; text-align:center" />
<input type="text" value="请输入密码" name="密码" style="height:35px; width:150px; margin: 5px 15px; background-color:#EDEDED; text-align:center" />
</form> <!---在表单里面为什么不能设置文本框垂直居中---->
</div>
<div class="2">
<div class="2-1">
<ul class="2-1-1">
<li>
<i class="ic1"></i>
<span>下次自动登录</span> <!--为什么这里的字会移到下面去了-->
<span>?忘记密码</span>
</li>
</ul>
</div>
</div>
<div class="3">
<div class="3-1">
<form>
<i class="ic2"></i>
<input type="button" style="width:150px; height:30px; margin:5px 15px 5px 15px"/>
<hr />
<i class="ic3"></i>
<input type="reset" value="" style="width:150px; height:30px; margin:5px 15px 5px 15px"/> <!-----button里面怎么设置reset1啊?不是重置嘛?-------->
</form>
</div>
</div>
</div>
</div>
</body>
</html>
<!------为什么雪碧图样式没有用----->