为什么表单上的按钮忽略了字体大小属性?

时间:2014-04-13 18:26:07

标签: html css font-size

我有以下表格(用HTML和CSS样式表描述) - http://jsfiddle.net/y9Z45/1/

底部有一个注册按钮,我希望增加其字体大小。

这是相关的CSS

.pricing-table .sign-up{
    float: left;
    padding: 8px 0 12px;
    font-size: 60 px;
    text-decoration: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pricing-table .sign-up a{
    padding: 10px 40px 11px;
    display: inline-block;
    font-size: 60 px;
    font-weight:1000;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    box-sizing:border-box;
    -moz-box-sizing:border-box; 
    -webkit-box-sizing:border-box;
    background: #888888;
    -o-transition: background .3s linear;
    -moz-transition: background .3s linear;
    -webkit-transition: background .3s linear;
    transition: background .3s linear;
}

从我所看到的,无论我在CSS样式表中使用什么,字体都保持一定的固定大小。有人可以解释我做错了吗?

1 个答案:

答案 0 :(得分:1)

font-size: 60px;

font-size: 60px !important;