У меня есть пустой div с именем #lightPole, который имеет фоновое изображение светового полюса. Я запускаю сценарий, чтобы осветитель продлил длину контейнера. В большинстве браузеров все выглядит хорошо, за исключением IE 7. По какой-то причине я не могу понять, что световой столб расширяется за нижний колонтитул. Есть идеи?
вот сайт - http://greenlight.mybigcommerce.com/
вот JavaScript:
<script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
$ (документ) .ready (function () {
var Container_height = $ ('# Container'). height ();
$ ( '# LightPole') высота (Container_height).
});
Вот некоторые из CSS, связанные с DIV:
#Container {
height:auto;
width: 1100px;
margin: 0 auto;
background-image:url(../images/containerBackground_2.png)!important; /*this is a hack for IE6 to choose between background images*/
background-image:url(../images/containerBackgroundIE6.png);
background-position: center top;
overflow:hidden;
clear:both;
}
#Outer {
clear: both;
height: auto;
margin: 0 0 0 15px;
overflow: hidden;
padding: 0;
width: auto;
}
#Wrapper {
clear: both;
float: left;
height: auto;
margin:9px 0 0 43px;
min-height: 350px;/***added to keep footer from hitting light on nav light pole**/
padding: 0;
width: 990px;
}
#LayoutColumn1{
float: left;
height: 100%;
margin-bottom: 0;
margin-right: 0;
margin-top: 0;
position: relative;
z-index: 88;
clear:both;
}
#lightPole {
background:url(../images/lightPole8aSlice.png);
margin: 0 0 0 19.9px;
/*min-height: 320px;*/
overflow: hidden;
padding: 0;
position: absolute;
width: 15px;
z-index: -100;
display: inline-block;
float: left;
}
Обновление - Может ли это быть вызвано неправильно закрытым div или плавающим не очищенным?