2015-04-29 86 views

回答

0

您可以通过以下方式添加自定义样式Primefaces传送带:

itemStyle<p:carousel>标签内嵌样式属性:

itemStyle="width:100%;" 

itemStyleClass属性的样式类的<p:carousel>标签:

itemStyleClass="fullWidthClass" 

或增加宽度容器里面无论是通过的styleClass或风格 属性如下:

<ice:panelGrid style="width:100%"></ice:panelGrid> 
<ice:panelGrid styleClass="fullWidthClass"></ice:panelGrid> 

CSS:

fullWidthClass { 
    width: 100%; 
    /* Other properties */ 
} 
相关问题