CSS视口高度:100vh无法正常使用div中的内容

时间:2015-07-24 09:53:32

标签: html css3 height viewport

我是新来的并注册,因为我无法在现有的步骤中找到答案。

我正在尝试创建一个单页网站,我希望“目标网页”具有完整的背景。我在整个页面上都有背景,但是当我开始在div中放置文本时,它就破了。我使用了以下css(sass):

.intro {
    color: #fff;
    height: 100vh;
    background: url('http://www.flabber.nl/sites/default/files/archive/files/i-should-buy-a-boat.jpg') no-repeat center center; 
    background-size: cover;

    &--buttons {
        position: absolute;
        bottom: 2em;
    }
}

p.hello {
    margin: 30px;
}

.page1 {
    color: #fff;
    height: 100vh;
    background: beige;
}

.page2 {
    color: #fff;
    height: 100vh;
    background: black;
}

使用以下HTML:

<html>
    <head>
        <link href="stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
        <title>My title</title>
    </head>

    <body>
        <div class="container">
            <div class="row">

                <div id="intro" class="intro">

                    <div class="text-center">
                        <p class="hello">
                            Intro text is coming soon!
                        </p>
                            <div class="col small-col-12 intro--buttons">
                                <p>Buttons coming here.
                                </p>
                            </div>
                    </div>

                </div>

                <div id="page1" class="col col-12 page1">
                    <p>Tekst test</p>
                </div>

                <div id="page2" class="col col-12 page2">
                    <p>Tekst test.</p>
                </div>

            </div>
        </div>
    </body>
</html>

您可以在此处查看结果:Socket.io docs 或者看我的笔:http://codepen.io/Luchadora/full/waYzMZ

如您所见,在定位介绍文本(p.hello {margin: 30px;}时,背景大小已更改并且不再是全屏幕。(顺便说一句:我使用了示例背景)。其他页面现在还有空格。

我该如何解决这个问题?我读过关于视口的文章,但我认为我唯一需要的是 height: 100vh; ,对吧?提前谢谢!

3 个答案:

答案 0 :(得分:4)

您的问题出在margin collapsing

父母和第一个/最后一个孩子
如果没有边框,填充,内联内容或间隙将块的边距顶部与其第一个子块的边距顶部分开,或者没有边框,填充,内联内容,高度,最小高度或最大值 - 高度将块的边缘底部与其最后一个子节点的边缘底部分开,然后这些边距崩溃。折叠的保证金最终在父母之外。

要解决您的问题,请向.text-center添加一些填充:

.text-center {padding:1px;}

Updated pen

答案 1 :(得分:0)

您尚未禁用身体边距。将其添加到您的CSS

body{
  margin:0px;
}

编辑:Pete发布的答案似乎是完整的解决方案,抱歉太慢了!

答案 2 :(得分:-1)

上面已经在旁边的谈话中说过,但它对我有用,我希望人们能够轻松找到它。

-- overflow-x:hidden; on both html, body in the css.