提问人:Ohadha Geoffrey 提问时间:11/14/2023 更新时间:11/14/2023 访问量:23
Html Select 元素
Html Select elements
问:
我正在尝试修复一个关于本机 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>``
答: 暂无答案
下一个:向 CSV 文件添加列标题
评论
<select>
是 HTML+CSS 中被替换的元素,所以对不起,你不能保证你能在多大程度上用 CSS 来设置它的样式。加入俱乐部。<select>