SS在modalBackground和HeaderFreez中出

SS在modalBackground和HeaderFreez中出

本文介绍了CSS在modalBackground和HeaderFreez中出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在构建解决方案时会显示以下错误,任何人都可以告诉这里发生了什么..

Following Errors are shown while building Solution, Can anybody tell whats wroung here..

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





Error   1   Validation (CSS 2.1): 'filter' is not a known CSS property name.    D:\WebSite1\css\Styles.css    287 4   D:\e-prescription\







.HeaderFreez
{
   /*position:relative ;*/
   position:relative;
   /*top:expression(this.offsetParent.scrollTop);*/
  /* top: expression(this.parentNode.parentNode.parentNode.scrollTop-1);*/
  top: expression(this.parentNode.parentNode.scrollTop-1);
   /*z-index: 10;*/
   z-index:15;
}





Error   3   Validation (CSS 2.1): 'expression(this.parentNode.parentNode.scrollTop-1)' is not a valid value for the 'top' property. D:\WebSite1\css\Styles.css    349 8   D:\e-prescription\

推荐答案


这篇关于CSS在modalBackground和HeaderFreez中出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 20:18