這工作正常,在FF和IE9,但無法在IE7和8DIV(頁腳)切換後不被向下推到IE
我有一個裏面含有一種形式兩個隱藏的div。一旦你點擊一個按鈕,正確的格式將顯示在下面。所有這些工作正常,但在IE7和8中,頁腳將與表單重疊,並且不會被切換事件壓低。
這裏是我的html(減少):
<div class="row" id="contactesp">
<div class="twelve columns">
<!-- Contact Form 7 plugin shows the form here -->
</div>
</div>
<div class="row" id="contactmund">
<div class="twelve columns">
<!-- Contact Form 7 plugin shows the form here -->
</div>
</div>
<!-- Footer -->
<footer role="contentinfo" id="content-info">
<div class="row">Content here</div>
</footer>
我的CSS(有些):
#content-info {
background-color: #1C3F94;
clear: both;
color: #FFFFFF;
float: none;
margin: 20px -20px 0;
padding: 0 4%;
display:block;
}
#contactesp, #contactmund {
display: none;
height: auto;
overflow: hidden;
}
我還添加溢出:隱藏的形式,但無濟於事。 這裏是我的JQuery:
jQuery(document).ready(function ($) {
$('.enesp').on('click',function(){
$('#contactmund').hide();
$('#contactesp').toggle();
});
$('.enmund').on('click',function(){
$('#contactesp').hide();
$('#contactmund').toggle();
});
});
該網站是這裏的完整代碼:http://www.institutoespanol.net/contacto/,問題出現在你點擊任何按鈕的地圖盒中。
刪除明確:既和float:沒有從#內容信息 – supersaiyan
同樣的事情發生 –
@SACHIN你應該在這裏討論,而不是要他送 –