Again with the layout of the problem. There are 3 divas that should be displayed in a string. In Opera and FF, everything is fine, but IE makes incomprehensible indents from the central diva on the sides. This is how IE is displayed:
This is how it is displayed in Opera and should also be in IE
Code only divs in index.html:
<div class="all_content"> <div class="left_top"></div><div class="right_top"></div><div class="center_top"> </div> </div> <div class="all_content"> <div class="left_top"></div><div class="right_top"></div><div class="center_top"> </div> </div> style.css
.all_content { margin-top: 12px; margin-left: 10px; margin-right: 10px; margin-bottom: 12px; } .left_top { width: 340px; height: 202px; border-bottom: 2px solid #f5f8fc; border-top: 2px solid #f5f8fc; position: relative; float:left; color: #696969; font-family: Tahoma; font-size: 11px; } .center_top { width: 320px; height: 202px; border: 2px solid #f5f8fc; position: relative; color: #696969; font-family: Tahoma; font-size: 11px; } .right_top { width: 340px; height: 202px; border-bottom: 2px solid #f5f8fc; border-top: 2px solid #f5f8fc; position: relative; float:right; color: #696969; font-family: Tahoma; font-size: 11px; }