Primefaces:如何在 primefaces 3.5 中为菜单栏设置粘性
Posted
技术标签:
【中文标题】Primefaces:如何在 primefaces 3.5 中为菜单栏设置粘性【英文标题】:Primefaces: how can make sticky for menubar in primefaces 3.5 【发布时间】:2016-04-01 13:23:04 【问题描述】:Primefaces 3,5 中没有粘性。我需要为菜单栏创建自定义粘性。谢谢。
【问题讨论】:
客户端都是 html、css 和 javascript。所以在那个方向寻找解决方案...google.nl/search?q=how+can+I+make+a+div+sticky+in+html 你可以用代码自己回答问题...请做 【参考方案1】:<style type="text/css">
.fixedElement
background-color: #c0c0c0;
position: fixed;
width: 97%;
z-index: 100;
height: 30px !important;
padding-bottom: 1px !important;
font-size: 20px !important;
</style>
* * * * * * *
<p:toolbar styleClass="fixedElement" >
<p:toolbarGroup align="left" >
<p:menubar model="#xxxxxx.menuModel" style="padding-bottom:2px !important ;padding-top:2px !important; height:20px; font-size:15px;"/>
<br/>
</p:toolbarGroup>
</p:toolbar>
【讨论】:
以上是关于Primefaces:如何在 primefaces 3.5 中为菜单栏设置粘性的主要内容,如果未能解决你的问题,请参考以下文章
如何在Primeface的列中删除PrimeFaces dataList的边框?