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.
我有一个模态弹出窗口,它包含在DIV. 模态足够广泛,可以有 a H1、 abody(DIV)和 a FOOTER。
DIV
H1
body(DIV)
FOOTER
HEADER以这种方式使用和FOOTER元素是否正确?
HEADER
见规格:
header 元素表示其最近的祖先分段内容或分段根元素的介绍性内容
(页脚使用与页眉类似的语言定义。)
div 不是分段元素,所以不,以这种方式使用页眉或页脚元素是不正确的。您将为(可能)body 元素定义页眉和页脚,而不是您的 div。
如果您将 div 替换为合适的分段元素,那么它可能是合适的。