css排版问题
为什么我下面的代码不能正确排版我想要label都往右对齐然后input框左对齐就像网站的注册页面一样</head><styletype="text/css">label{...
为什么我下面的代码不能正确排版
我想要label 都往右对齐 然后input框左对齐
就像网站的注册页面一样
</head>
<style type="text/css">
label{
float:left;
text-align:right;
font-size:20px;
}
input{
text-align:left;
}
.out{
width:450px;
height:500px;
border:1px solid #6C6C6C;
margin:auto;
}
</style>
<body>
<div class="out">
<div >
<label>用户名</label>
<input type="text" />
</div>
<div>
<label>密码</label>
<input type="password" />
</div>
<div>
<label>确认密码</label>
<input type="password" />
</div>
</div>
</body>
</html> 展开
我想要label 都往右对齐 然后input框左对齐
就像网站的注册页面一样
</head>
<style type="text/css">
label{
float:left;
text-align:right;
font-size:20px;
}
input{
text-align:left;
}
.out{
width:450px;
height:500px;
border:1px solid #6C6C6C;
margin:auto;
}
</style>
<body>
<div class="out">
<div >
<label>用户名</label>
<input type="text" />
</div>
<div>
<label>密码</label>
<input type="password" />
</div>
<div>
<label>确认密码</label>
<input type="password" />
</div>
</div>
</body>
</html> 展开
展开全部
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>test</title>
<style type="text/css">
label {
float: left;
width: 118px;
text-align: right;
font-size: 20px;
}
input {
text-align: left;
width: 274px;
}
.out {
width: 450px;
height: 500px;
border: 1px solid #6C6C6C;
margin: auto;
text-align: center;
}
</style>
</head>
<body>
<div class="out">
<div>
<label>用户名</label> <input type="text" />
</div>
<div>
<label>密码</label> <input type="password" />
</div>
<div>
<label>确认密码</label> <input type="password" />
</div>
</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询