Primefaces CSS标题太大

时间:2015-09-25 06:48:18

标签: html css jsf jsf-2 primefaces

我有一个带有facelets的primefaces页面,一切正常。 header.xhtml代码是:

    <div class="title ui-widget-header ui-corner-all" style="display: table;overflow: hidden;width:100%">
        <div style="display: table-cell; vertical-align: middle">
            <h:graphicImage library="images" name="apo48.png" />
        <font size="6">Usermanagement und Selfcare</font>
        </div>
        <div style="display: table-cell;vertical-align: middle;text-align:right;">
            <h:outputText value="Willkommen #{login.user}"/><br/>
            <h:commandLink action="#{login.logout}" value="Logout"/>
        </div>
    </div>

所以标题看起来也很好,但标题下面有一个垂直滚动条。似乎标题是一个或两个px到大。但为什么会这样,我该怎么办?

enter image description here

修改 好的一个完整的例子:我有layout.xhtml

<ui:debug hotkey="x" rendered="#{facesContext.application.projectStage == 'Development'}" />
<p:layout fullPage="true">
    <p:layoutUnit position="north" style="border: 0;">
        <ui:include src="../header/header.xhtml"/>
    </p:layoutUnit>
    <p:layoutUnit position="west" style="border: 0;">
        <ui:include src="../menu/navigation.xhtml"/>
    </p:layoutUnit>
    <p:layoutUnit position="center" style="border: 0;">
        <ui:insert name="content"/>
    </p:layoutUnit>
</p:layout>

使用CSS

    .ui-widget, .ui-widget .ui-widget {
    font-size: 95% !important;
    }
    .ui-datatable tbody td.wrap {
    white-space: normal;
    }
    .unresizable {
    resize: none;
    }

在北部,layoutunit是上面提到的代码。

1 个答案:

答案 0 :(得分:2)

有两个单位可用于设置相对于视口大小(窗口大小)vh和vw的宽度和高度。要设置标题的高度和宽度,您可以执行此操作

.title{
  height: 20vh;
  width: 90vw;
}

此代码将.title的高度设置为窗口高度的20%。 或者你可以轻松设置

body{
  height: 100vh;
  width: 100vw;
}

另见: