我的网站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 中。
我的网站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 中。
试试这个
#index ul.section {
font-size: 10px;
margin-bottom: 1em;
border: 1px solid #636363;
background: cyan;
width: 180px;
}
颜色没有大小。如果您想执行某些措施,请分别使用width
(或height
),即width: 180px;
在您的样式 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
}