答案 0 :(得分:2)
您可以在css中为.footer-top-inner.container-width添加另一个属性(display:flex;)(包含块的DIV)
<div class="footer-top-inner container-width">
//your footerblocks
</div>
CSS:
.footer-top-inner.container-width{
display: flex;
//if that doesn't work, you might want to use display: flex !important;
}
但最好的方法是在此容器中添加另一个类,以防止我们覆盖您的网站:)
编辑:为了让您的网站看起来不错,您可以在display:flex;
中添加另一个属性justify-content: space-between;
这应该会自动对齐您的页脚块