Popup在Internet Explorer中是透明的

时间:2012-02-09 11:58:43

标签: css html

我在显示弹出窗口时遇到问题。除了Internet Explorer之外,Popup完全适用于所有浏览器。 Popup在Internet Explorer中是透明的。我不知道为什么?这是我的css:

.new_popup{
 position: fixed; 
 left: 149.5px; 
 top: 146px; 
 z-index: 100;  
 width: 496px; 
 display: none; 
 background:none; 
 -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); 
 filter:alpha(opacity=100);
}

任何人都可以帮助我吗? 谢谢 小吃

1 个答案:

答案 0 :(得分:0)

根据IE版本,不透明度的语法不同:

-ms-filter: "alpha(opacity=10)"; /* IE 8 */
filter : alpha(opacity=10); /* IE < 8 */
opacity: 0.1; /* IE 9 */

您对设置的期望是什么:

background:none;