我帶指南針框架內工作,並將其重置了很多默認的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屬性?謝謝
http://stackoverflow.com/questions/3242870/why-isnt-my-important-attribute-working-in-google-chrome – JMichelB
你真的需要'!important'填充? – MikeM
不,我只是想強制瀏覽器使用我的風格 – megas