2
有人指出我使用的網站包上的一個錯誤Bootstrap 3Bootstrap 3 - IE9錯誤中的隱形下拉菜單。固定?
請注意我的網站(使用Internet Explorer 9)下拉菜單顯示陰影,但沒有內容。即它們是持有不可見內容的盒子。 (http://www.clipartillustration.com/)
我搜索了一下,發現了一些類似的問題,但他們似乎並沒有解決我所說的問題。
有人指出我使用的網站包上的一個錯誤Bootstrap 3Bootstrap 3 - IE9錯誤中的隱形下拉菜單。固定?
請注意我的網站(使用Internet Explorer 9)下拉菜單顯示陰影,但沒有內容。即它們是持有不可見內容的盒子。 (http://www.clipartillustration.com/)
我搜索了一下,發現了一些類似的問題,但他們似乎並沒有解決我所說的問題。
在自舉,theme.css線158取下過濾器屬性
.navbar {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#f8f8f8));
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #f8f8f8, 100%);
background-image: -moz-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
background-repeat: repeat-x;
border-radius: 4px;
/*Delete this line */
/*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);*/
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
它IE漏洞並迫使其像overflow:hidden
(或類似的東西)
非常感謝你。非常感謝。我會執行這個。 – Orangeman555