我玩过bootstrap 3并遇到了我认为应该是一个显而易见的问题。
.container类允许基于宽度的响应,但是如果在:
< = 940px应该有100%宽度响应
> 940px它应该开始使用边距:0自动或居中的列,两边都有边距。
与xero.com类似,他们在桌面上设置了边距,然后在一定宽度以下变得响应
答案 0 :(得分:0)
请cotainer-fluid
代替container
并使用max-width: 940px
或所需宽度。
如果您使用container it will be adaptive content within tablet version
.container-fluid {
margin-right: auto;
margin-left: auto;
max-width: 1600px; /* or 950px */
}