在下拉列表的项目之间插入换行符

发布于 2024-09-01 07:08:26 字数 115 浏览 3 评论 0原文

我想在下拉列表的项目之间留出一些空间。是否可以?

例如:

ddl:

    item1

    item2

    item3

I want give some space between the items of the dropdownlist. is it possible?

ex:

ddl:

    item1

    item2

    item3

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

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

发布评论

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

评论(3

梦萦几度 2024-09-08 07:08:26

如果您的意思是

为此,你需要使用可样式元素替换

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:

-黛色若梦 2024-09-08 07:08:26

尝试这样

        comboBox1.Items.Add("item1");
        comboBox1.Items.Add("");
        comboBox1.Items.Add("item2");
        comboBox1.Items.Add("");
        comboBox1.Items.Add("item3");
        comboBox1.Items.Add("");

Try like this

        comboBox1.Items.Add("item1");
        comboBox1.Items.Add("");
        comboBox1.Items.Add("item2");
        comboBox1.Items.Add("");
        comboBox1.Items.Add("item3");
        comboBox1.Items.Add("");
孤独患者 2024-09-08 07:08:26

你应该使用CSS。

例子:

select option
{
    line-height: 35px;

}

You should use CSS.

example:

select option
{
    line-height: 35px;

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