Primefaces:如何对齐仪表板?

时间:2014-04-10 12:37:56

标签: css jsf primefaces

我想在布局单元(p:dashboard)内显示我的仪表板(p:layoutUnit)作为中心对齐(垂直和水平)。我尝试过[position="center"],但它没有用。我使用谷歌浏览器作为浏览器。

我应该如何实现同样目标?

3 个答案:

答案 0 :(得分:0)

尝试将仪表板包装在一个中心对齐的部分中:

<div align="center">
    <p:dashboard >
    ...
    </p:dashboard>
</div>

答案 1 :(得分:0)

如果列是固定的,您可以使用div来集中,仪表板元素的宽度为:

<p:outputPanel style="text-align: center;">
    <p:outputPanel style="width:600px; margin-right: auto; margin-left: auto;">
        <p:dashboard>
        ...
        </p:dashboard>
    </p:outputPanel>
</p:outputPanel>

答案 2 :(得分:-1)

尝试在div标签以外的位置给出位置。