SSIファイルにDIVコンテナ要素を含めるのは良い習慣ですか、それとも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>