Bulma-使图像和页脚适合一个浏览器窗口,而无需滚动

时间:2018-10-30 23:10:33

标签: css bulma

我想显示图像和页脚以始终适合浏览器窗口-无需滚动。为了适合图像,应在保持比例的同时调整图像大小。页脚应始终位于底部,并且图像将填充其余空间。 我认为使用bulma可以轻松实现这一目标,但到目前为止我还无法实现。英雄布局不是通过bulma实现此目标的正确布局吗?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
  </head>
  <body>
    <section class="hero" style="height: 100vh">
      <div class='hero-body is-paddingless'>
        <figure class='image'>
          <img src="https://via.placeholder.com/400x800">
        </figure>
      </div>
      <div class='hero-foot'>
        <div class='box'>
          hero-foot
        </div>
      </div>
    </section>
  </body>
</html>

1 个答案:

答案 0 :(得分:1)

首先,我认为很多人都不知道bulma或英雄布局是什么,但是如果您想将背景变成小图案并适合整个屏幕,则应尝试使用此方法,这也应该使页面全宽而不滚动:

CSS:

body, html {
height: 100%;
}

.bg { 
background-image: url("your_background");
height: 100%; 
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

如果这对您不起作用,您可以尝试禁用滚动:

overflow: hidden;