2014-01-09 128 views
0

我怎麼能覆蓋身體的下面使用自定義樣式的CSS如果頁面需要與覆蓋jQuery Mobile的主體背景色

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" /> 

<style> 
body { 
    background-color: red; 
} 
</style> 

聯繫我試圖保存自定義風格custom.css,並宣佈它像

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" /> 

<link rel="stylesheet" href="custom.css" /> 

但它不起作用。

回答

1

檢查,看看它是否不加載更具體的規則像body.someclassname,或使用important規則:body{background:red !important;}

0

很難說沒有看到你的頁面的其餘部分,但你嘗試過:

body { 
    background-color: red !important; 
}