有两个<div></div>
标签。当使用Firefox浏览它时,效果是可取的。 .steven
和.john
之间存在差距。然而,当使用IE浏览它时,效果是不希望的; .Steven
和.john
连在一起(没有差距)。如何解决这个问题呢?
.steven{
position: relative;
width: 620px;
left: 55px;
float: left;
}
.john {
position: relative;
width: 270px;
right: 35px;
float: right;
}