gpt4 book ai didi

html - jsf 页面上的 css 样式无法在服务器上正确呈现

转载 作者:行者123 更新时间:2023-11-28 11:56:02 24 4
gpt4 key购买 nike

我正在为我的 jsf 页面设置样式,但是当我运行它时,浏览器 (Chrome) 上没有显示任何内容。
我正在使用 eclipse kepler、glassfish4 和 primefaces
这是html代码

   <div class="box">
<p:graphicImage url="images/usericon.png" id="usericon"
alt="utilisateur IsetN"></p:graphicImage>
<br></br>
<p:inputText placeholder="Login" required="true"></p:inputText>
<br></br>
<p:password value="#{passwordController.password}"
promptLabel="#{msg['password.promptLabel']}"
weakLabel="#{msg['password.weakLabel']}"
goodLabel="#{msg['password.goodLabel']}"
strongLabel="#{msg['password.strongLabel']}" required="true"
placeholder="Mot de passe" />
<br></br>
<p:commandButton value="Connexion" />
<br></br>
<h:link url="#">Aide?</h:link><br></br>
</div>

这是风格

     .box{
height:100px;
width:100px;
/*border-radius*/
-webkit-border-radius:15px;
-moz-border-radius:15px;
border-radius:15px;
background-color:#cdcdcd;
/*box-shadow*/
-webkit-box-shadow:0 8px 6px -6px #efefef;
-moz-box-shadow:0 8px 6px -6px #efefef;
box-shadow:0 8px 6px -6px #efefef;
margin:50% 50% 50% 50%;
}

注意:没有样式的组件效果很好。

最佳答案

对我有用:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:fn="http://java.sun.com/jsp/jstl/functions">

<h:head>

<style type="text/css">
.box {
height: 100px;
width: 100px;
/*border-radius*/
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background-color: #cdcdcd;
/*box-shadow*/
-webkit-box-shadow: 0 8px 6px -6px #efefef;
-moz-box-shadow: 0 8px 6px -6px #efefef;
box-shadow: 0 8px 6px -6px #efefef;
margin: 50% 50% 50% 50%;
}
</style>


</h:head>

<h:body>

<div class="box">
<p:inputText placeholder="Login" required="true" value="#"></p:inputText>
</div>

</h:body>
</html>

当我运行你的 CSS 时,我发现“margin: 50% 50% 50% 50%;”把你的灰色框放在屏幕中间,但我必须滚动才能看到它!我知道这很愚蠢,但您确定您的组件不仅仅显示在主滚动区域之外吗?

关于html - jsf 页面上的 css 样式无法在服务器上正确呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20094464/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com