gpt4 book ai didi

css - 在 Bulma 中垂直居中元素

转载 作者:技术小花猫 更新时间:2023-10-29 12:00:22 26 4
gpt4 key购买 nike

我刚刚开始使用 Bulma 设置我的博客原型(prototype)。有一个包含两个等分列的 footer 部分。

我希望三个元素(Twitter、电子邮件等)在黄色区域中垂直居中。 Bulma 有专门的类(class)吗?

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>

最佳答案

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

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

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

关于css - 在 Bulma 中垂直居中元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47064526/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com