以下是代码:
<div ng-repeat="obj in data | appLevelFilter:customFilter">
Do stuff with the filtered data
</div>
&#13;
div {
border-radius: 5px;
border: 1px solid green;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
#header {
height: 52px;
width: 100%;
background-color: #B2D490;
z-index: 1;
}
h1 {
color: #FFFFFF;
padding-left: 25px;
margin: 0;
display: inline;
font-size: 27px;
line-height: 50px;
}
h2, h3, h4, h5, h6 {
padding-left: 10px;
margin: 10px 0 10px 0px;
}
.left {
height: 100%;
width: 250px;
background-color: #DBFFED;
float: left;
margin-top: 10px;
}
.right {
height: 100%;
width: 300px;
background-color: #DBFFE0;
float: right;
margin-top: 10px;
}
#footer {
height: 35px;
width: 100%;
background-color: #57C449;
clear: both;
position: relative;
margin-top: 10px;
}
#footer p {
color: #FFFFFF;
text-align: center;
margin: auto;
line-height: 35px;
}
span {
color: #E3E3E3;
}
&#13;
或http://codepen.io/anon/pen/ojXpxx
添加位置:固定;到#header废墟吧。标题越来越低,右侧需要一些额外的空间。 我花了很多时间来解决这个问题。试图添加包装,更改元素位置等。 似乎没什么用。那么问题是什么? 谢谢。
答案 0 :(得分:0)
我在这里看到的是,你有一些默认的不需要的CSS样式应用于你的项目。要解决这个问题,您需要“重置”这些样式。我建议将这个CSS文件添加到您的项目中。它会解决你的问题。
答案 1 :(得分:0)
当你申请职位时:固定;元素将相对于视图位置。
试试这个。
body{
padding-top: 50px
}
#header {
height: 52px;
width: calc(100vw - 30px);
background-color: #B2D490;
z-index: 1;
position: fixed;
top: 5px;
}