About the link you provided
黑条是.pagewrapper
但没有为pagewrapper指定宽度。
.pagewrapper {
left: 0;
position: relative;
transition: left 500ms ease-in-out 0s;
}
帖子内容设置为最大宽度:700px,它不会延伸边界。
.wrapper {
margin: 0 auto;
max-width: 700px;
width: 90%;
}
黑条是全新的部分,具有此代码,没有设置宽度:
.postcontents.dark {
background: none repeat scroll 0 0 #2c2e32;
color: #e2e2e2 !important;
padding: 90px 0;
}
There is a CSS specific solution.如果需要使用100%宽度的块引号,则需要使其脱离#容器的正常流。
.blockquote {
position: absolute;
width: 100%;
left: 0;
}
Blockquote within containerBlockquote outside the flow
更好的解决方案是创建一个名为blockquote-full-width
并允许用户使用它。