布尔马中心元素垂直

时间:2017-11-01 22:14:48

标签: css bulma

我刚刚开始使用Bulma设置我的博客原型。有一个footer部分,其中有两个相等的列。

我希望这三个项目(Twitter,电子邮件等)在黄色区域中垂直居中。布尔玛有没有特别的课程?

enter image description here

(请参阅完整的example on codepen.io。)

<footer class="footer" style="background-color: lightpink;">
    <div class="columns">
      <div class="column has-text-centered-touch" style="background-color: cyan;">
        <p>Some copyright stuff...</p>
        <p>Templated with <a href="https://bulma.io" target="_blank">Bulma</a>. Published with <a href="https://gohugo.io/" target="_blank">Hugo</a>.</p>       
      </div>
      <div class="column has-text-right" style="background-color: yellow;">
        <div class="level">
          <div class="level-left"></div>
          <div class="level-right">
            <a class="level-item" href="#">Twitter Icon</a>
            <a class="level-item" href="#">Email Icon</a>
            <a class="level-item" href="#">LinkedIn Icon</a>
          </div>
        </div>
      </div>
    </div>
</footer>

2 个答案:

答案 0 :(得分:6)

您可以添加以下CSS,使右侧列垂直居中。

https://codepen.io/anon/pen/XzmEgr

.footer .has-text-right {
  display: flex;
  justify-content: center; 
}

答案 1 :(得分:1)

.level

上设置100%的高度
.right-side > .level {
  height: 100%;
}

JSFiddle