2014-01-30 258 views

回答

1

你忘了內標籤(fiddle):

.ui-datepicker-today .ui-state-default { 
    font-weight: bold; 
} 

ui-state-default默認jQuery UI樣式表有font-weight: normal。所以更好地通過類來覆蓋內部標籤。

-1
.ui-datepicker-today a{ 
    font-weight: bold !important; 
} 

上有td你的目標內部的錨font-weight: normal;。你需要重寫與!important或通過使用更具體的標識

0
.demo input{ 
font-weight: bold !important; 
} 
+0

如果沒有必要,您絕對不應該使用'!important'。爲什麼在這種情況下呢? –

相關問題