最新回答 / 阿木木额
既然用的框架,那你就把 框架里的颜色属性去掉,没有颜色不就透明了,去掉 navbar-default(白) navbar-inverse(黑),这时你可以 给body 加个背景色 测试一下,要是导航条能显示出 body的背景色,就证明可以
2017-06-06
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<h1 class="text-center">Hello World!</h1>
<button type="button" class="center-block btn btn-primary btn-lg">我是按钮,按我一下</button>
<h1 class="text-center">Hello World!</h1>
<button type="button" class="center-block btn btn-primary btn-lg">我是按钮,按我一下</button>
.carousel {
height: 500px;
}
.carousel .item {
height: 500px;
}
.carousel .item img {
min-height: 500px;
}
@media (max-width: 768px) {
.carousel {
height: 300px;
}
.carousel .item {
height: 300px;
}
.carousel .item img {
min-height: 300px;
}
}
height: 500px;
}
.carousel .item {
height: 500px;
}
.carousel .item img {
min-height: 500px;
}
@media (max-width: 768px) {
.carousel {
height: 300px;
}
.carousel .item {
height: 300px;
}
.carousel .item img {
min-height: 300px;
}
}
2017-05-13