这是我的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等。 但字体大小: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?