css:放入此字段集中时,属性会发生令人震惊的变化

发布于 2024-09-14 17:14:35 字数 257 浏览 3 评论 0原文

我的自定义下拉菜单的顶部和底部填充有很大的变化。

更新 Javascript、CSS 和小提琴中包含 HTML [PHP 已删除]


首先,我没有意识到我可以分享小提琴 ^^ 相当史诗般的网站。

我继续调试,但我想我会把它发布在这里,看看是否有人能发现问题出在哪里:)

My custom drop down menu has a really large change in top and bottom padding.

UPDATE Javascript, CSS & HTML included in fiddle [PHP removed]


First off, I didn't realise I could share a fiddle ^^
Pretty epic site.

I'ma keep debugging, but thought I'd post it here to see if anyone can spot where the problem is :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我做我的改变 2024-09-21 17:14:35

在您的字段集 CS​​S 中,您正在更改行高,这也适用于下拉列表。

您必须在下拉列表的CSS中设置行高:

.dropdown,
.dropdown li /* or whatever other selector is also needed */
{
    line-height: 1em;
}

编辑:

这似乎非常合适:

.dropdown,
.dropdown li,
.dropdown span,
.dropdown a {
    padding: 0;
    line-height: 3em;   
}

In your fieldset css you are changing the line-height, which is also applied to the dropdown.

You have to set the line-height in the css for the dropdown:

.dropdown,
.dropdown li /* or whatever other selector is also needed */
{
    line-height: 1em;
}

EDIT:

That seems to fit quite good:

.dropdown,
.dropdown li,
.dropdown span,
.dropdown a {
    padding: 0;
    line-height: 3em;   
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文