-1

AJAX Control ToolKit模式弹出窗口的背景(盲窗帘)在上下滚动数次后消失。我试过使用下面的CSS样式,但仍然没有运气。ACTK Modal Popup的背景在上下滚动几次后消失

.modalBackground 
{ 
    filter:alpha(opacity=70); 
    padding-left: 0px; 
    background-color:Gray;   
     color: #000000; 
     vertical-align: top; 
     padding-bottom: 0px; 
     padding-top: 0px; 
} 

.modalBackgroundV2 
{ 
      position: absolute; 
      z-index: 100; 
      top: 0px; 
      left: 0px; 
      background-color: #000; 
      filter: alpha(opacity=60); 
      -moz-opacity: 0.6; 
      opacity: 0.6; 
} 
+0

与浏览器的时候我并没有出现任何问题? – DavRob60 2011-04-07 20:33:17

+0

IE6和FireFox 3.6.11 – 2011-04-08 06:40:59

回答

0

使用下面的CSS样式

.modalBackground 
{ 
    background-color:Gray; 
    filter:alpha(opacity=70); 
    opacity:0.7; 
}