我要写三列(我原本不想要这个,但它看起来最适合我的项目)。右边的人坚持要保持在中间人的下方,即使它漂浮在右边。我应该改变什么?
整个事情实际上将放在另一个 div 中,但这似乎无关紧要。我已将代码简化为有问题的区域:
<style>
.contain {
border:1px solid;
width:639px;
height:500px;
}
.subAreaLeft{
float:left;
position:relative;
width:205px;
border:1px solid;
}
.subAreaMid{
margin: 0 auto;
position:relative;
width:205px;
border:1px solid;
}
.subAreaRight{
width:205px;
position:relative;
float:right;
border:1px solid;
}
</style>
</head>
<body>
<div class="contain">
<div class="subAreaLeft" id="contactInfo">
ONE
</div>
<div class="subAreaMid">
TWO
</div>
<div class="subAreaRight">
THREE
</div>
</div>
</body>