这是我的CSS:
@CHARSET "UTF-8";
.commandLinks {
margin: 5px;
padding: 5px 5px 5px 20px; /* 20px makes room for your background image */
/*border: 1px solid #aaa; */
}
.commandLinks .create {
margin-right: 10px;
color: red;
}
.commandLinks .vote {
color: blue;
}
.commandLinks .link {
color: orange;
font-weight: bold;
font-size: 16;
}
.button {
margin-right: 10;
margin-left: 5;
}
我尝试了不同的方法,刷新浏览器 CTRL - F5,重新启动 eclipse 等。但是 font-size: 16; 或者
margin-right: 10;
margin-left: 5;
无论如何都不会出现。例如,当我添加 font-weight: bold; 它看起来没有问题。
我的jsf代码:
<div id="links" class="commandLinks" >
<h:link styleClass="link" outcome="Answers">answers</h:link>
</div>
我做错了什么或如何刷新 css ?