位置是:固定;不适用于Facelets模板

时间:2013-10-15 09:51:15

标签: css primefaces facelets jsf-2.2

我使用的是primefaces 3.5。我希望我的模板标题位于固定位置,以便在内容滚动时无法滚动它。 xhtml是:

的template.xhtml

    <div id="top">
        <ui:insert name="top">Top</ui:insert>
    </div>

    <div id="content" class="center_content">
        <ui:insert name="content">Content</ui:insert>
    </div>

    <div id="bottom">
        <ui:insert name="bottom">Bottom</ui:insert>
    </div>

&#34; top&#34;的css是:top.css

#top { width: 100%; height: 90px; background: #036fab; position: fixed; top: 0; }

我在一个html文件中尝试了上面的css。它在.html文件中工作得很好。 请给我一些建议。

0 个答案:

没有答案