溢出:用静态以外的位置隐藏在 chrome 和 safari 中不起作用,这是新的吗?这是一个错误吗?
你可以在这里看到 http://jsfiddle.net/TKb6M/1/ 溢出隐藏不适用于固定相对或绝对位置。这是新的吗?因为我想我记得之前在 chrome 和 safari 中使用过 Thins,而且效果很好。
you can see here http://jsfiddle.net/TKb6M/1/
overflow hidden does not work with position fixed relative or absolute. is this new? because i think i remember using thins in chrome and safari before and it worked fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当子元素大于父元素
overflow:hidden
时(或者当子元素的位置部分落在父元素的边界之外时),结果才可见。因此,在您的示例中,您没有看到任何差异,因为子
img
和父#he
都具有相同的宽度 (70px)。看一下这个更新(
#he
的宽度更改为 30px):http ://jsfiddle.net/TKb6M/10/The results are only visible when the child element is larger than the parent element
overflow:hidden
is applied to (or when the child element's position falls partially outside of the boundaries of the parent element).So in your example you're not seeing any difference because the child
img
and the parent#he
both have the same width (70px).Take a look at this update (the width of
#he
is changes to 30px): http://jsfiddle.net/TKb6M/10/