问题可在此链接中查看。http://dansdemos.info/prototypes/htmlSamples/responsive/step08_megaGridForward.html
这三个盒子需要有绿色背景,但另一种风格优先。我认为样式应该根据它们在样式表中的出现位置优先,样式表中较低的样式级联(优先)样式表中较高的样式。我想这是错误的,因为这些框的背景颜色的样式表在这里:
#maincontent .col {
background: #ccc;
background: rgba(204, 204, 204, 0.85);
}
#callout1 {
background-color: #00B300;
text-align:center;
}
#callout2 {
background-color: #00CC00;
text-align:center;
}
#callout3 {
background-color: #00E600;
text-align:center;
}
当“#maincontent .col”的样式被删除时,绿色出现(链接)http://dansdemos.info/prototypes/htmlSamples/responsive/step08_megaGridForwardGreen.html,但我认为绿色应该出现,因为它是在向上指定的灰色。
我正在寻找一种方法来获得我需要的东西,但是如果我了解为什么背景是灰色而不是绿色的,那真的会容易得多。
任何帮助将不胜感激。谢谢你。