最佳答案
您可以使用.jumbotron类来实现此目的.请确保不要将其放在带有.container类的元素中.
原文链接:https://www.f2er.com/css/427649.html所以这是一个使用.jumbotron的例子.
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css');
body {
margin: 0;
}
.content {
background-color: green;
}
.jumbotron {
background-color: orange;
}
.no-left-right-padding {
padding-left: 0;
padding-right: 0;
}
@media screen and (min-width: 1200px) {
img {
width: 100%;
height: auto;
}
}