CSS : 在 select 选项中设置字体系列对 chrome 和 IE 浏览器不起作用?
CSS : Setting font-family in select options doesn't work for chrome and IE browsers?
我想为 select 的选项定义不同的字体系列样式,例如:
<select>
<option style="font-family:Arial;">AAAA</option>
<option style="font-family:Times New Roman;">AAAA</option>
<option style="font-family:Comic Sans MS;">AAAA</option>
</select>
但此代码在 IE 和 Chrome 浏览器中不起作用。
一个想法?
在此先衷心感谢您。
选项标签是由浏览器 UI 样式创建的,样式很难设置且不一致。您可能想要使用一些 javascript,将其构建为 select 以外的其他内容(例如列表),或者我的偏好,将其保留为浏览器默认设置。
我想为 select 的选项定义不同的字体系列样式,例如:
<select>
<option style="font-family:Arial;">AAAA</option>
<option style="font-family:Times New Roman;">AAAA</option>
<option style="font-family:Comic Sans MS;">AAAA</option>
</select>
但此代码在 IE 和 Chrome 浏览器中不起作用。
一个想法?
在此先衷心感谢您。
选项标签是由浏览器 UI 样式创建的,样式很难设置且不一致。您可能想要使用一些 javascript,将其构建为 select 以外的其他内容(例如列表),或者我的偏好,将其保留为浏览器默认设置。