Styling part of the OPTION text(OPTION 文本的样式部分)
问题描述
我有一个包含几个 OPTION 元素的 SELECT 列表.这是我对部分选项文本进行样式设置的天真方法:
I have a SELECT list with several OPTION elements. Here is my naive approach to styling part of the option text:
<select name="color">
<option value="0">red <span style="font-weight: bold;">SLOW</span></option>
<option value="1">blue <span style="font-weight: bold;">SLOWER</span></option>
<option value="2">green <span style="font-weight: bold;">SLOWEST</span></option>
</select>
这不起作用:浏览器不喜欢 OPTION 元素内的 SPAN 元素.
This does not work: the browser does not like a SPAN element inside the OPTION element.
还有其他方法可以设置 OPTION 元素文本的一部分样式吗?
Is there some other way to style part of an OPTION element's text?
推荐答案
没有.option
以平台原生的方式设置样式,仅设置其中一部分的样式是行不通的.(这通常也不是一个特别好的主意.)
Nope. option
s are styled in a way native to the platform, and styling only a part of one doesn't work. (It usually wouldn't be a particularly good idea either.)
这篇关于OPTION 文本的样式部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:OPTION 文本的样式部分
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01