欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决设置rich:select的宽度

程序员文章站 2022-03-09 22:03:57
...

1.         解决设置rich:select的宽度

.rf-select-small-width input[type="text"] {

    width: 100px;

    font-size: 11px;

}

再加上rf-select-small-width样式

<rich:select styleClass="rf-select-small-width" listWidth="100">

         <f:selectItem itemValue="0" itemLabel="Option 1" />

         <f:selectItem itemValue="1" itemLabel="Option 2" />

         <f:selectItem itemValue="2" itemLabel="Option 3" />

         <f:selectItem itemValue="3" itemLabel="Option 4" />

         <f:selectItem itemValue="4" itemLabel="Option 5" />

     </rich:select>