修复Yii2中的margin-top body标签

时间:2015-11-11 12:14:04

标签: html css twitter-bootstrap yii2-advanced-app

我的索引在body tag中定位内容时遇到问题,我使用site.css中的以下代码修复了它:

margin-top: 340px;

,我的索引现在还可以!但是,

我在margin-top: 340px;中添加了site.css后,其他观点如下:

enter image description here 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;
}

1 个答案:

答案 0 :(得分:0)

您只能为索引视图的正文添加一个类,例如

<body class="margin-fix">...</bod>

CSS:

.margin-fix {
    margin-top: 340px;
}

如果你不能将类添加到正文中,你可以将div作为索引视图中内容的包装器,并将该类添加到该div中。