为什么div-tag上的字体集不起作用?

时间:2016-08-19 01:47:28

标签: html css jsp

<div style="margin:0px auto;padding-top:20px;width:1000px;font-size :90pt;!important;" id="showBroadcastContent">
    <ul><strong>Loading Broadcasts...</strong></ul>
</div>

this is firebug shows

在上图中,显示的字体来自fistyle.css。但是,我认为div-tag设置具有更高的优先级。

如何让div显示我的字体样式?

3 个答案:

答案 0 :(得分:0)

错误的类型font-size :90pt;!important;

应为font-size :90pt !important;

答案 1 :(得分:0)

你改变代码:

font-size :90pt;!important;

font-size :90pt!important;

它可以平衡逗号

答案 2 :(得分:0)

只需在萤火虫上检查一下..当你使用css避免使用骆驼的大小写字母时

&#13;
&#13;
#showBroadcastContent {
    margin:0px auto;
    padding-top:20px;
    width:1000px;
    font-size :90pt!important;
}
&#13;
<div id="showBroadcastContent">
   <ul><strong>Loading Broadcasts...</strong></ul>
</div>
&#13;
&#13;
&#13;