怎么让一个小的div在另一个大的div中居中显示。如下图中的两个div.

2024-11-23 02:31:33
推荐回答(4个)
回答1:

#wrap的宽度不能auto 高度可以auto
.content_top 宽度也是不能auto要比#wrap的小
这样下
#wrap{width:1000px;height:auto;float:center;margin:0 auto}
.content_top{width:980px;height:auto;float:center;margin:0 auto}

回答2:

首先都有俩个内框装内容了,外框就没必要在设定比他们还打的宽度,直接自适应就好了,,
其次,你这个估计是浮动了??那就不好在居中了,除非三个框的宽度都知道,通过margin-left:xxxpx;来调整居中了

回答3:

给div加margin:0 atuo;

回答4:

css:
margin:0px auto;