我想将h:selectManyListbox的边框颜色和滚动条颜色设置为红色

    <h:selectManyListbox id="abc" style="">
    </h:selectManyListbox>

最佳答案

搜索后,scrollbar-base-color仅是Internet Explorer有效,您将需要一些JavaScript用于FireFox和Chrome ...

这是有关执行此操作的信息:Custom ScrollBar

至于边框,您可以简单地使用:

<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;
}

关于html - 如何为h:selectManyListbox设置边框和滚动条颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16702028/

10-09 09:55