Тема: Резиновая шапка для сайта из тегов div
Почему-то не работает вот такая резиновая шапка:
<div style="display:inline-block;">
<div style="background:url(/style/logo-left.jpg) 0% 0% no-repeat; height:60px;"></div>
<div>Заголовок шапки</div>
<div style="background:url(/style/logo-right.jpg) 100% 0% no-repeat; height:60px;">
</div>
В чем ошибка?
Вот нашел решение:
<div>
<div style="display:inline-block; width:300px; background:url(style/logo-left.jpg) no-repeat; height:60px;"></div>
<div style="display:inline-block;">Заголовок шапки</div>
<div style="display:inline-block; width:300px; background:url(style/logo-right.jpg) no-repeat; height:60px; float:right;"></div>
</div>
А вот если хочу блок с logo-right.jpg разместить справа, то "float:right;" в браузере Opera не всегда помогает почему-то.