本文介绍了top行中的错误:expression(this.offsetParent.scrollTop);的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么错误出现在top:expression(this.offsetParent.scrollTop);

我的冻结网格视图标题的css编码在下面给出



Why the error is giving in the line top:expression(this.offsetParent.scrollTop);

My css coading for freezing of header of gridview is given below



<style type="text/css">
.HeaderFreez
{
position:relative ;
top:expression(this.offsetParent.scrollTop);
z-index: 10;
}
</style>

推荐答案


这篇关于top行中的错误:expression(this.offsetParent.scrollTop);的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 20:37