Html Select 元素

Html Select elements

提问人:Ohadha Geoffrey 提问时间:11/14/2023 更新时间:11/14/2023 访问量:23

问:

我正在尝试修复一个关于本机 HTML 选择元素如何符合文本间距书签的错误,但不幸的是,它不起作用。我应该怎么做才能适应文本间距?

该元素应具有以下属性;行高 1.5,字母间距 0.12em,字距 0.16em。代码段如下:

`<label for="sele">Choose an option:</label>
`    <select name="fname" id="sele">
        <option value="">Option 1</option>
        <option value="">Option 2</option>
        <option value="">Option 3</option>
    </select
the CSS is as follows:

<style>
select {
        line-height: 1.5;
        letter-spacing: 0.12em;
        word-spacing: 0.16em;
}
</style>``
HTML 选择

评论

0赞 Dai 11/14/2023
<select>HTML+CSS 中被替换的元素,所以对不起,你不能保证你能在多大程度上用 CSS 来设置它的样式。加入俱乐部
0赞 Kalnode 11/14/2023
如果您想要对元素进行任何完全自定义,则必须进行自定义。<select>

答: 暂无答案