2011-08-09 107 views
0

我帶指南針框架內工作,並將其重置了很多默認的CSS樣式:瀏覽器不重寫CSS屬性

..., h1, .. {    // line number 18 
    margin: 0; 
    padding: 0; 
    border: 0; 
    font-size: 100%; 
    font: inherit; 
    vertical-align: baseline; 
} 

下面我定義我的風格爲h1

h1 {      // line number 77 
    font-weight: bold; 
    color: #333; 
    padding: 15px, 5px, !important; 
} 

但Chrome瀏覽器不接受填充屬性並保持爲0.所有其他屬性均爲正常。

爲什麼瀏覽器不接受較低的css屬性?謝謝

+0

http://stackoverflow.com/questions/3242870/why-isnt-my-important-attribute-working-in-google-chrome – JMichelB

+0

你真的需要'!important'填充? – MikeM

+0

不,我只是想強制瀏覽器使用我的風格 – megas

回答

1

您的代碼修改,

h1 {      // line number 77 
    font-weight: bold; 
    color: #333; 
    padding: 15px 5px !important; 
} 

之前重要的逗號只是刪除。

請試試這個..

+0

仍然無法正常工作 – megas

+0

對不起,親愛的只是把填充:15px 5px!重要; – anglimasS

+0

我在逗號後刪除15px – anglimasS

1

!important之前不應該有逗號,因此它不被遵守。

+0

固定,但它沒有工作 – megas