Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是第一次用 HTML5 构建 WEB,我遇到了一个小问题。
我有代码:
<header></header> <section> <header></header> <article></article> <footer></footer> </section> <footer></footer>
问题是,我的部分页脚继承了我的页脚样式。我不知道如何从我的代码中删除继承。你能帮助我吗?
PS:我的部分页脚继承页脚样式,而不是页脚。有一张照片:照片链接
安德鲁是对的,只需在页脚中添加一个类或制作样式:'section > footer{}' 或 'body > footer{}'
您可以将 ID 或 CLASS 添加到部分页脚或设置部分页脚的样式,例如:section > footer { }
但是,这可能不适用于所有浏览器,并且有些草率。我只想添加一个 ID 或 CLASS。