Tag: 固定的

使用鼠标滚轮滚动时,IE 10和11会使固定背景跳转

在Windows 8中使用鼠标滚轮滚动时,固定的背景图像会像疯了一样反弹。 这只会影响IE 10和IE 11.这会影响position:fixed元素。 有没有防止它发生在IE 10和11? 这是一个固定的背景图像的例子: http://www.catcubed.com/test/bg-img-fixed.html

父母与孩子的位置固定,父母溢出:隐藏的错误

我不知道是否有问题,但我想知道为什么overflow:hidden在fixed父/子元素上不起作用。 这是一个例子: CSS和HTML: .parent{ position:fixed; overflow:hidden; width:300px; height:300px; background:#555; } .children{ position:fixed; top:200px; left:200px; width:150px; height:150px; background:#333; } <div class="parent"> <div class="children"> </div> </div> 现场演示: jsFiddle