Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使我的模板成为液体布局时遇到问题,但仅将主要内容区域(左侧区域)固定在 990 像素,有人可以帮助解决这个使用液体的区域并修复吗?
布局是这样的;
central banner
带有图像中心页脚的主要内容左/固定右列
非常感谢你们!
一个示例或实时链接会很好。但是,如果您只是尝试让内容区域设置为 990px 的宽度,然后在窗口较小时做出响应,那么这应该可以工作:
HTML 示例:
<div class="content"> <p>Content in here</p> </div>
CSS:
.container { display: block; max-width: 990px; margin-right: auto; }