Nivo Slider div仅在Firefox上位于主容器div之外

时间:2013-08-28 01:01:56

标签: html css

我有一个滑块

http://www.inspirativearts.co.uk/

在所有浏览器上,它按设计运行,但在Firefox上它位于主容器之外。

关于CSS问题的任何想法?

1 个答案:

答案 0 :(得分:0)

你有浮动元素:left;他们必须有溢出:隐藏;在他们周围或类似的东西。

在.fullmenu

之后添加<div class="clear"></div>
.clear {
    clear:both; 
    width:100%;
    line-height:0; 
    font-size:0;
}

或使用此html <div class="fullmenu clearfix"></div>

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0; 
}
.clearfix:after {clear: both;}
.clearfix {zoom: 1;}