我有一个带有 navbar-wrapper 类的导航栏,它使它浮动在浏览器的顶部中心。我想在它后面有一个填充蓝色的矩形区域。我该怎么做?
考虑这个页面http://lowcoupling.com/post/59130887987/defining-project-plans-and-gantt-charts-in-eclipse
我想在正文之前和导航栏后面添加一个蓝色填充区域。
更新 我已经设法通过在正文的开头添加一个空的 jumbotron 并设置
.jumbotron{
margin-top:-90px;
background-color:rgb(20,7,91);
}
问题是它有圆角,两个顶角留下一个恼人的空白,你可以看到http://lowcoupling.com/post/59130887987/defining-project-plans-and-gantt-charts-in-eclipse
关于如何解决它的任何想法?
更新 这很容易
.jumbotron{
margin-top:-90px;
background-color:rgb(20,7,91);
border-radius:0px;
}