我知道这方面有很多线程,但这些线程都没有真正帮助我。我有一个基于 Typo3 的电子商店。我有页脚,我想和我的浏览器窗口一样宽。在我的主页上,没有问题。但是当我点击“显示所有产品”时,会出现产品列表,但我的页脚只有 988px 宽。在我的 index.html 模板文件中,我为页脚分隔了 div(它不在任何其他 div 或块中): FOOTER
<div id="footer">
<div class="main-width">
<div class="footer-menu" id="footerMenu">
<a href="http://osc4.template-help.com/zencart_32899/">Home</a> |
<a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=products_new">New Products</a>
|
<a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=specials">Specials</a>
|
<a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=products_all">Products All</a>
|
<a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=reviews">Reviews</a>
|
<a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=contact_us">Contact Us</a>
|
<a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=gv_faq">FAQ</a>
</div>
<div class="copyright">
Copyright © 2013
</div>
</div>
</div>
当我在 OPERA 中加载我的页面并单击(在歌剧中)“检查元素”时,我的页脚(在所有产品页面上)似乎在某种 div(contentWrapper)中:
<body id="indexBody">
- <div class="main-width">
+ <div id="header">
<div class="banners"/>
+ <div class="crsl">
- <div id="contentWrapper">
+ <div id="sidebar">
+ <div id="content_container">
+ <div id="footer">
</div>
</div>
</body>
</html>
+ 和 - 显示哪些 div 已折叠,哪些未折叠。希望它清楚。:) 在我的主页上,当我单击检查元素时,我的页脚不在那个“contentWrapper”div 内。哪里可能有问题?请帮忙