班级被其他班级写过

时间:2011-02-23 15:45:41

标签: html css css-selectors

这是一个简单的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;

2 个答案:

答案 0 :(得分:3)

#main-content ol.upper-roman应具体到足以“赢”。

因此,在您的CSS中,将ol.upper-roman更改为上面的选择器。

请阅读这些内容:

答案 1 :(得分:3)