我和this user有完全相同的问题,除了它是一个不同的主题。 :)我试图让this page(和其他人喜欢它)全宽而不是带有隐形侧边栏的博客风格。我试过搞乱
.container { max-width:
但我没有得到我所希望的。我只知道CSS的基础知识,所以我真的不知道它是怎么回事。有人可以给我一个提示吗?
答案 0 :(得分:1)
您网页上的某些内容也位于另一个名为#primary
的容器中,该容器已应用width: 70%
,您可以添加此内容以使该内容的宽度为100%:
#primary {
width: 70%; // Remove this.
width: 100%; // Add this.
}
<小时/>
如果您从max-width
移除.container
,则您提供的sample page默认为100%宽度。
.container {
max-width: 1170px; // Remove this line entirely.
}