DIV+CSS3 两个DIV 我想让第一个div居中 然后第二个div紧挨着第一个DIV的右侧 谢谢各位的回答~
发布网友
发布时间:2022-04-21 14:39
我来回答
共4个回答
热心网友
时间:2022-04-21 16:08
div层是正行的就是最好不留空白
左右
<div style=" float:left; bored:1px solid #333; width:200px; "></div>
<div style=" float:left; bored:1px solid #F00; width:200px; "></div>
左中右
<div style=" float:left; bored:1px solid #00F; width:200px; "></div>
<div style=" float:left; bored:1px solid #333; width:200px; "></div>
<div style=" float:left; bored:1px solid #F00; width:200px; "></div>
热心网友
时间:2022-04-21 17:26
第一个div用margin:0 auto;来居中,第二个DIV用绝对定位来处理,这样就是紧紧的挨着了
热心网友
时间:2022-04-21 19:01
<div style="position:relative;width:100px;height:100px;background:red;margin:0 auto;">
第一个div
<div style="position:absolute;top:0;right:-100px;width:100px;height:100px;background:green;">
第二个div
</div>
</div>
热心网友
时间:2022-04-21 20:52
都绝对定位呗