#container {
background-color: #CCC;
height:100px;
}
.clear-fix
{
overflow: hidden;
_height:1%;
}
#navigation {
float: right;
margin-right: 10px;
background-color:Aqua;
}
#content {
float: left;
margin-left: 10px;
background-color:Orange;
}
#content div{display:inline; float:right;}
#content a {float:right; display:inline;margin-right:5px;}
<body style="direction:rtl">
<div id="container" class="clear-fix">
<div id="navigation"><a href="#">hi there ddd ddd</a></div>
<div id="content">
<div>somthing else</div>
<a target="_blank" href="#" ><img src="anything.jpg" style="width:32px; height:32px"/></a>
<a target="_blank" href="#" ><img src="anything.jpg" style="width:32px; height:32px" /></a>
</div>
</div>
</body>
IE6 / 7 не отображается правильно (слева).я не хочу устанавливать ширину для #content Знаете ли вы какой-либо фиксатор для IE?если я перемещаю внутренний элемент содержимого влево, это правильно (после перестановки элемента), но я хочу, чтобы элемент float находился справа.
, пожалуйста, скажите мне ваше решение.
наилучшие пожелания