定位元素以覆盖跨度
表达问题的最佳方法是使用 示例。
如果您查看 http://jsfiddle.net/r4BcB/1/ ,您可以看到我正在尝试覆盖选择框而不是整个父级的父级(span1 和 span2)。
我有什么遗漏的吗?
The best way to phrase the question is with an example.
If you look at http://jsfiddle.net/r4BcB/1/ , you can see that I'm trying to cover the select boxes and not the whole parent's parent (span1 and span2).
Is there anything I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将
position:relative
添加到环绕范围: http://jsfiddle.net/r4BcB /2/Just add
position:relative
to the wrapping span: http://jsfiddle.net/r4BcB/2/您的覆盖范围应该在您想要覆盖的 SELECT 之前定义,如下所示:
Your cover span should be defined before the SELECTs you want to cover, something like this will do it :