修复 Yii2 中的 margin-top body 标签
Fixing margin-top body tag in Yii2
我的索引在 body tag
中定位内容时出现问题,我在 site.css
中使用以下代码修复了它:
margin-top: 340px;
我的索引现在没问题! 但是,
我在我的site.css
中添加这个margin-top: 340px;
后,其他视图是这样的:
body 标签距顶部 340px。
那么,我怎样才能在 yii2 中为我的索引做到这一点?
谢谢
代码:
html,
.my-navbar {
background-color: #ffffff;
height: 10px;
}
.tagline {
text-shadow: 0 0 10px #000;
color: #fff;
margin-top: 100px;
}
body {
height: 100%;
margin-top: 340px;
font-family: monospace;
}
.footer {
height: 180px;
background-color: #222222;
border-top: 1px solid #eeeeee;
padding-top: 20px;
}
.wrap {
min-height: 100%;
height: auto;
margin: 0 auto -60px;
padding: 0 0 60px;
}
.wrap > .container {
padding: 70px 15px 20px;
}
.business-header {
height: 400px;
background: url('../images/header.jpg');
position: absolute;
top: 0;
left: 0;
right: 0;
background-size: cover;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
.not-set {
color: #c55;
font-style: italic;
}
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings', fantasy;
font-style: normal;
font-weight: normal;
line-height: 1;
padding-left: 5px;
}
a.asc:after {
content: /*"\e113"*/ "\e151";
}
a.desc:after {
content: /*"\e114"*/ "\e152";
}
.sort-numerical a.asc:after {
content: "\e153";
}
.sort-numerical a.desc:after {
content: "\e154";
}
.sort-ordinal a.asc:after {
content: "\e155";
}
.sort-ordinal a.desc:after {
content: "\e156";
}
.grid-view th {
white-space: nowrap;
}
.hint-block {
display: block;
margin-top: 5px;
color: #999;
}
.error-summary {
color: #a94442;
background: #fdf7f7;
border-left: 3px solid #eed3d7;
padding: 10px 20px;
margin: 0 0 15px 0;
}
.workspotname {
color: white;
}
您可以仅为索引视图的正文添加 class,例如
<body class="margin-fix">...</bod>
CSS:
.margin-fix {
margin-top: 340px;
}
如果您不能将 class 添加到正文中,您可以在索引视图中将 div 作为内容的包装器并将 class 添加到其中div.
我的索引在 body tag
中定位内容时出现问题,我在 site.css
中使用以下代码修复了它:
margin-top: 340px;
我的索引现在没问题! 但是,
我在我的site.css
中添加这个margin-top: 340px;
后,其他视图是这样的:
那么,我怎样才能在 yii2 中为我的索引做到这一点?
谢谢
代码:
html,
.my-navbar {
background-color: #ffffff;
height: 10px;
}
.tagline {
text-shadow: 0 0 10px #000;
color: #fff;
margin-top: 100px;
}
body {
height: 100%;
margin-top: 340px;
font-family: monospace;
}
.footer {
height: 180px;
background-color: #222222;
border-top: 1px solid #eeeeee;
padding-top: 20px;
}
.wrap {
min-height: 100%;
height: auto;
margin: 0 auto -60px;
padding: 0 0 60px;
}
.wrap > .container {
padding: 70px 15px 20px;
}
.business-header {
height: 400px;
background: url('../images/header.jpg');
position: absolute;
top: 0;
left: 0;
right: 0;
background-size: cover;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
.not-set {
color: #c55;
font-style: italic;
}
/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings', fantasy;
font-style: normal;
font-weight: normal;
line-height: 1;
padding-left: 5px;
}
a.asc:after {
content: /*"\e113"*/ "\e151";
}
a.desc:after {
content: /*"\e114"*/ "\e152";
}
.sort-numerical a.asc:after {
content: "\e153";
}
.sort-numerical a.desc:after {
content: "\e154";
}
.sort-ordinal a.asc:after {
content: "\e155";
}
.sort-ordinal a.desc:after {
content: "\e156";
}
.grid-view th {
white-space: nowrap;
}
.hint-block {
display: block;
margin-top: 5px;
color: #999;
}
.error-summary {
color: #a94442;
background: #fdf7f7;
border-left: 3px solid #eed3d7;
padding: 10px 20px;
margin: 0 0 15px 0;
}
.workspotname {
color: white;
}
您可以仅为索引视图的正文添加 class,例如
<body class="margin-fix">...</bod>
CSS:
.margin-fix {
margin-top: 340px;
}
如果您不能将 class 添加到正文中,您可以在索引视图中将 div 作为内容的包装器并将 class 添加到其中div.