定位元素以覆盖跨度

发布于 2024-11-05 20:03:33 字数 244 浏览 0 评论 0原文

表达问题的最佳方法是使用 示例。

如果您查看 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

画中仙 2024-11-12 20:03:33

只需将 position:relative 添加到环绕范围: http://jsfiddle.net/r4BcB /2/

Just add position:relative to the wrapping span: http://jsfiddle.net/r4BcB/2/

阿楠 2024-11-12 20:03:33

您的覆盖范围应该在您想要覆盖的 SELECT 之前定义,如下所示:

<span>
    <span id="cover">Block the selects</span>
    <select><option>Select 1</option></select>
    <select><option>Select 2</option></select>
    <select><option>Select 3</option></select>
</span>

Your cover span should be defined before the SELECTs you want to cover, something like this will do it :

<span>
    <span id="cover">Block the selects</span>
    <select><option>Select 1</option></select>
    <select><option>Select 2</option></select>
    <select><option>Select 3</option></select>
</span>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文