css - Magento - 如何将页脚设置为 100% 宽度?

标签 css magento footer

我想知道如何将页脚宽度设置为 100%?我尝试将 .footer-container 和 .footer 宽度设置为 100% 以及绝对位置。

这是网站:

http://buysmartcardsonline.com/

最佳答案

如果您将 div.footer-container 移到 div.page 容器之外,它应该会自动覆盖页面的宽度。

之前:

<div class="page">
    ...

    <div class="footer-container">...</div>
</div>

之后:

<div class="page">
    ...
</div>
<div class="footer-container">...</div>

关于css - Magento - 如何将页脚设置为 100% 宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27777775/

相关文章:

html - Div 不会拉伸(stretch),因为它包含的元素设置为最小高度

html - 100% 高度的 float 页脚?

jquery - masonry 在移动 View 中弄乱了 Bootstrap 导航栏

javascript - 发出关闭消息框 cookie

css - ui5条件格式表格单元格

magento 在列表页面上使用简单的产品图片

javascript - 如何像预加载器一样实现 Youtube

Magento 类别自定义设计页面布局不变

html - Magento,如何在 block 中添加静态 url 链接

html - 如何使页脚对齐到最底部?