我想为我的 h:selectManyListbox 设置边框颜色和滚动条颜色为红色
<h:selectManyListbox id="abc" style="">
</h:selectManyListbox>
经过一番搜索,scrollbar-base-color
只有 Internet Explorer 有效,您将需要一些用于 FireFox 和 Chrome 的 JavaScript...
这是有关这样做的信息:自定义滚动条
至于边框,您可以简单地使用它:
<h:selectManyListbox id="abc" style="border: 1px solid red;">
</h:selectManyListbox>
或者
CSS:
.customSelect
{
border: 1px solid red;
}
JSF:
<h:selectManyListbox id="abc" styleClass="customSelect">
</h:selectManyListbox>
或者当然是一个简单的选择器:
select
{
border: 1px solid red;
}