2011-02-23 54 views
0

這是一個簡單的CSS問題。我有網站有以下問題:班正在被其他班寫過

#main-content ol { 
list-style-type: decimal; 
padding-left: 25px;}         /* abc.css (line 140) */ 

#contentWrapper p, #contentWrapper ul, #contentWrapper ol, #lmBlurbsArchive { 
color: #666666; 
font-size: 1.1em; 
margin-bottom: 12px; 
margin-left: 0; 
margin-right: 0; 
margin-top: 0;}          /* abc.css (line 69) */ 

/* Code below being striped out/ over written by other class above */ 
ol.upper-roman { 
list-style-type: upper-roman; 
+0

什麼是你的問題的設置? – 2011-02-23 15:49:30

回答

3

使用的ID的選擇器具有隻使用一個類不是選擇一個更高的值,因此#main-content ol被優先於ol.upper-roman

You'd必須使用#main-content ol.upper-roman覆蓋上線140

相關問題