0

我这里有一个滑块

http://www.inspiratorarts.co.uk/

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

关于 CSS 问题的任何想法?

4

1 回答 1

0

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

<div class="clear"></div>在 .fullmenu 之后添加

.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;}
于 2013-08-28T01:14:05.300 回答