我有一个非常简单的布局,在 Ie 中看起来不正确。我已经搞砸了 Firebug Lite 和 IE 开发人员工具栏,但似乎无法归结为什么在这种情况下右图像会包裹在左图像下方。这是我为调试目的而简化的问题的链接。 http://tunetra.de/test/layout.html
我还将在下面传递我的 HTML。
<html>
<head>
<style>
#container
{
margin: 0px auto;
width: 1000px;
background: #fff;
}
#main
{
text-align: left;
}
</style>
</head>
<body style="text-align:center;">
<div id="container">
<div id="header">
<img src="img/left_image.png" style="width: 272px; height: 90px; float: left;position: relative;">
<div style="float: right;position: relative;background-color: #fff;width: 728px;height: 90px;">
<img src="img/right_image.png" style="">
</div>
</div>
<div id="main">
Lorem Ipsum Bla<br/> Bla<br/> Bla
</div>
</div>
</body>
</html>