1

这是我的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 ?

4

1 回答 1

4

使用 16px 而不是 16。从技术上讲,字体大小(没有 px)的范围是 1 到 7。因此 16 是无效的。类似的问题

于 2013-02-16T19:08:08.307 回答