将DIV容器元素包含在SSI文件中是一个好习惯,还是应该只将标记放在DIV容器中。例如,在下面的代码中,我有一个页脚出现在所有页面下。我是否应该只将<p>
和<a>
元素放在SSI文件或<div>
元素中?
<div id="footer">
<div class="container">
<div class="wrapper">
<div id="footer_content">
<p>Copyright 2010 New Life e. V.<br />
<a href="en/contact.htm">Contact</a> |
<a href="en/map.htm">Find Us</a> |
<a href="en/impressum.htm">Impressum</a></p>
</div>
</div>
</div>
</div>
答案 0 :(得分:0)
将整个页脚DIV放在包含文件中会更好。否则,不需要页脚的页面也必须携带不必要的外部DIV。