文字:背景颜色大小相同

时间:2012-08-28 13:00:39

标签: css background html

我的网站http://maximearchambault.com

我希望我的3部分,商业,个人项目和信息/联系人具有相同的颜色背景大小。蓝色需要为180像素。

/* section title */
#index span.section_title,
#index span.section_title a {  color: #000000; font-weight: bold; background: #00FFFF; }

这位于我的style.css。

3 个答案:

答案 0 :(得分:0)

颜色没有大小。如果您要强制执行某些措施,请分别使用width(或height),即width: 180px;

答案 1 :(得分:0)

在你的风格css的第75行 -

#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
}

答案 2 :(得分:0)

试试这个

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