Yii2 中带有全屏背景图像的容器

Container with a fullscreen background image in Yii2

我正在尝试获取此容器的全屏背景图片:

<div class="header"

    <div class="container">

        <div class="row">
            <div class="col-lg-12">

                <h2 class="text-center">test1</h2>

                <p class="lead text-center">test2</p>

                <p class="text-center"><a class="btn btn-lg btn-success"
                                          href="http://localhost/"><span
                            class="glyphicon glyphicon-plus"></span> something</a></p>
            </div>
        </div>
    </div>

但是,显示的图片没有全屏视图,我正在尝试获得类似这样的内容:

http://ironsummitmedia.github.io/startbootstrap-business-frontpage/

并且我按照每个教程进行操作,但没有任何效果。!

我不确定我使用 Yii2 这个 bootstrap 是否有意义。

顺便说一句,这是我的 site.css

html,
.my-navbar {
    background-color: #ffffff;
    height: 10px;
    border-bottom: 1px solid #eeeeee;
}

body {
    height: 100%;
    background: #F5F5F5;
}

.footer {
    height: 180px;
    background-color: white;
    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;
}

.header {
    height: 400px;
    background: url('../images/header.jpg') no-repeat center center;
    min-height:100%;
    background-size:100px 150px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    width: 100%;
    -o-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;
}

我应该怎么做才能像 header 中的这个例子那样实现全屏背景图像?

http://ironsummitmedia.github.io/startbootstrap-business-frontpage/

你能试着把它作为一个例子放在 Codepen 上吗?

您的 div class "header" 没有以“>”结尾,这可能会导致一些问题。

在指定背景 img 的 CSS 中尝试使用以下内容:

  background-size:cover;

添加另一个 class 容器 class 并使用带有封面选项的背景图像。例如,我在这里使用 .bimg。

<div class="container bimg"></div>

.bimg{
    width:100%;
    background:url('PATH');
}

将此添加到页眉 css

position: absolute;
top: 0;
left: 0;
right: 0;

现在应该可以了。