2013-09-27 66 views

回答

8

在自舉,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(或類似的東西)

+0

非常感謝你。非常感謝。我會執行這個。 – Orangeman555