欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

div相对于外层div居中

程序员文章站 2022-05-01 21:09:08
...
<html>
<body>

<div style="float:left;width:600px;height:400px;background-color:gray;padding-top:10px;">
<div style="height:25px;background-color:yellow;width:200px;margin:0 auto;">
<div style="float:left;">用户名:</div>
<div style="float:left;"><input type="text" style="width:100px;"></div>
</div>
</div>

</body>
</html>