ie8 overflow-y:auto;滚动条由PIE.htc锁定

时间:2012-06-27 04:56:22

标签: css internet-explorer-8 scrollbar

PIE.htc似乎引起了这个问题,但是我需要将其保留在其他几个效果中。

ie8(在FF& webkit中正常工作)

我有一个嵌套div设置css overflow-y: auto;当滚动条显示我可以使用滚轮,单击向上/ dn箭头它工作正常,但滚动抓取栏被锁定,即当我左键单击它闪烁蓝色但后面恢复正常灰色,我无法拖动它。

任何人都有建议的工作

THX 领域

.outterDiv{  
  position:absolute;
  min-width: 1000px;
  min-height: 600px; 
  width:99%;  
  height:50%;  
  z-index:100;

  background-color:#212121;  
  color:#fff;  
  text-shadow:1px 1px 1px #000;  

  border:1px solid #303030;  
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; 

  -moz-box-shadow:0px 0px 10px #000;  
  -webkit-box-shadow:0px 0px 10px #000;  
  box-shadow:0px 0px 10px #000;  
  behavior: url(PIE.htc);
}
带滚动条的

innerDiv

.innerDiv{  
  position:absolute; 
  overflow-x:hidden;  
  overflow-y: auto;
  -ms-overflow-y : auto;

  left: 0%;
  width:25%; 
  margin-left:0;

  top: 5.5%;
  height:91%;   
  z-index:900;  
  margin: 0% 0% 0% 0%;
  padding: .5% 0% 0.1% 0%;

  background-color:#ababab; 

  text-shadow:1px 1px 1px #000;  

  border:1px solid #303030;  
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px; 

  -moz-box-shadow:0px 0px 4px #000;  
  -webkit-box-shadow:0px 0px 4px #000;  
  box-shadow:0px 0px 4px #000;   
}

0 个答案:

没有答案
相关问题