我正在使用<p:growl>
PrimeFaces 3.2 的组件来显示人脸消息。我想自定义它的位置,使其出现在左侧而不是右侧。
我尝试了以下方法:
<h:head>
<title>Facelet Title</title>
<style type="text/css">
.ui-growl {
position:absolute;
top:20px;
left:20px;
width:301px;
z-index:9999;
}
</style>
</h:head>
<h:body>
<h:form id="frm">
<div id="add">
<p:growl id="growl" showDetail="true" sticky="true" autoUpdate="true"/>
<h:panelGrid columns="2" >
...
但它没有用。我哪里错了?