CSS BUG 总结
时间:2014-06-12 08:00:59
收藏:0
阅读:218
1.IE7 容器使用了滚动条 其子元素中使用 position:relative ,position变成了fixed,从而不随容器的滚动条滚动;
解决:
在其容器元素的属性中也加入 position:relative (也就是使用滚动条的元素)
评论(0)