2012-08-28 36 views

回答

0

颜色没有大小。如果你想你的风格的CSS的75行分别执行一定的措施,使用width(或height),即width: 180px;

0

-

#index span.section_title, #index span.section_title a { 

color: black; 
font-weight: bold; 
background: cyan; 
width: 180px; //add this 
display: block; ///add this 
} 

您可能希望将其添加到只跨度,其中情况下添加新规则 -

#index span.section_title { 
     width: 180px; //add this 
     display: block; ///add this 
} 
0

刚刚尝试这一点

#index ul.section { 
    font-size: 10px; 
    margin-bottom: 1em; 
    border: 1px solid #636363; 
    background: cyan; 
    width: 180px; 
} 
+0

感谢所有我已经尝试解决finnn和它的工作 –