The problem arises from style="100%" , it only changes the width of selectonemenu, you must set the width for the label inside selectonemenu (in this situation):
<style type="text/css"> .ui-selectonemenu-label{ width:100% !important; } </style>
If you want to install all selectonemenu:
<style type="text/css"> .ui-selectonemenu-label{ width:100% !important; } .ui-selectonemenu{ width:100% !important; } </style>
for more general, you can include in the css file.
See also: What is a JSF Resource Library and How to Use It?
source share