body.football h3 { color: #a07a40; } footer h3 { color: white; }
要解决此问题,您需要使用!important标志或更改页脚选择器更具体,最简单的方法是使用id.
一个例子:
#footer h3{ color: white; } <footer id='footer'><h3></h3></footer>