溢出:隐藏不起作用
这是我的代码: http://jsfiddle.net/ybCN5/
我不知道为什么它不起作用。 我尝试了不同的方法,但仍然找不到解决方案。我将使用这个框进行 jquery 滑动。
Here's my code: http://jsfiddle.net/ybCN5/
I do not know why it does not work.
I've tried different ways and still cannot find a solution. I'm going to use this box for jquery sliding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
position:absolute;
导致元素(.sldtitulo) 转义其父元素。您需要向父级告知您希望它不会使用非静态值溢出position
。Your
position:absolute;
is causing the element(.sldtitulo) to escape its parent. You need to give the parent that you want it to not overflow aposition
with a value that is notstatic
.