border-left: 200px
margin-right: 200px
这样,border左边就会有200px的距离,而右边的元素也会有200px的距离
如果是左右对齐,用 text-align:left/center/right (左对齐,中对齐,右对齐)如果是上下对齐,用 line-height:30px(你文本框的高度)
思路:<style type="text/css">
.uName,.uPass,.rPass{width:300px}
.lb{float:leftwidth:100pxdisplay:block}
</style>
<div class="uName"><label class="lb">用户名</label><input type="text" size="20"></div>
<div class="uPass"><label class="lb">密码</label><input type="text" size="20" ></div>
<div class="rPass"><label class="lb">请再次输入密码</label><input type="text" size="20" ></div>