在下拉列表的项目之间插入换行符
我想在下拉列表的项目之间留出一些空间。是否可以?
例如:
ddl:
item1
item2
item3
I want give some space between the items of the dropdownlist. is it possible?
ex:
ddl:
item1
item2
item3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的意思是
为此,你需要使用可样式元素替换
If you mean a
<select>
, no this isn't possible, at least not in a cross-browser way (unless you add empty, selectable<option>
elements, which I wouldn't guess that you want in there.To do this you need to use something that replaces the
<select>
with stylable elements, here are some options:尝试这样
Try like this
你应该使用CSS。
例子:
You should use CSS.
example: