选择:焦点{宽度:自动;}
我有一个 CSS 问题,但我不知道如何解决它。 为了展开下拉列表,您必须使用下面的 css。仅在一种条件下工作正常,当您选择一个选项时,选择不会返回到初始宽度。为什么??? :( 这是我希望在包括 IE8 在内的所有浏览器上发生的行为,因为 IE 我必须设置焦点宽度。
select:focus{
min-width:158px;
width:auto;
}
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;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看这个!我认为这将解决您有关 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/
您需要强制元素在更改后失去焦点。
添加:
像这样:
You need to force the element to lose focus after it changes.
Add:
like this:
伪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