选择:焦点{宽度:自动;}

发布于 2025-01-02 18:00:27 字数 324 浏览 0 评论 0原文

我有一个 CSS 问题,但我不知道如何解决它。 为了展开下拉列表,您必须使用下面的 css。仅在一种条件下工作正常,当您选择一个选项时,选择不会返回到初始宽度。为什么??? :( 这是我希望在包括 IE8 在内的所有浏览器上发生的行为,因为 IE 我必须设置焦点宽度。

select:focus{
    min-width:158px;
    width:auto;
}

小提琴: http://jsfiddle.net/DCjYA/304/

I have a css problem and I don't know how to fix it.
In order to expand a dropdown list you must use css below. Work fine only with one condition, when you select an option the select wont return to initial width. WHY??? :(
This a behavior that I want to happen on all browser including IE8 because of IE I must set width on focus .

select:focus{
    min-width:158px;
    width:auto;
}

fiddle:
http://jsfiddle.net/DCjYA/304/

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

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

发布评论

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

评论(3

鹿港巷口少年归 2025-01-09 18:00:27

看看这个!我认为这将解决您有关 IE 上组合框的问题。

http://www.andreabianchin.it/jquery-skinner/

Check this out! I think will solve your problems regarding combo boxes on IE.

http://www.andreabianchin.it/jquery-skinner/

请别遗忘我 2025-01-09 18:00:27

您需要强制元素在更改后失去焦点。

添加:

onchange="this.blur()"

像这样:

<select id="id72" class="styleDDC" onchange="this.blur()">

You need to force the element to lose focus after it changes.

Add:

onchange="this.blur()"

like this:

<select id="id72" class="styleDDC" onchange="this.blur()">
邮友 2025-01-09 18:00:27

伪CSS类:焦点是在它被选中时(当它突出显示为蓝色时)一旦你点击其他东西,它就会缩小回你的最小宽度

the pseudo css class: focus is for while its selected (while its highlighted blue) once you click on something else it shrinks back down to your min-width

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文