fra*_*rky 0 html css flexbox vue.js bulma
我正在尝试在 vue.js 项目中使用 Bulma 和 flexbox 将图标和文本居中,我尝试遵循此问题的答案(How to Vertical center elements in Bulma?)。我的图标垂直居中,但文本元素似乎偏离中心,其下方有几个像素的空白。它们都在同一基线上,但这意味着它们与我的图标不符(见下图)。
我不确定我哪里出错了,我在下面包含了我的代码,如果有任何帮助,我将不胜感激
<template>
<div class="singleProjectContainer" :key="project.id">
<ul class="columns is-flex projectPreview" style="border-bottom: 0.5px solid #c1c1c1;">
<div class="column is-1 is-flex projectIcon">
<li>
<div v-if="project.projectType === 'Identity'"class="projectIcon" >
<img src="../static/SVG/Identity-Circle.svg" alt="circle icon for branding & identity" />
</div>
</li>
</div>
<div class="projectTitle column is-4">
<li> <h3>{{ project.Name }}</h3> </li>
</div>
<div class="projectSummary column is-7">
<li> <p>{{ project.Summary }}</p> </li>
</div>
</ul>
</div>
</template>
<script>
export default {
name: 'ProjectItem',
props: ['project'],
}
</script>
<style scoped>
.columns {
height: 100%;
padding: 0;
margin: 0;
}
.singleProjectContainer {
height: 72x;
margin: 0px;
}
.columns.projectPreview {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.projectIcon {
padding: 0 0 0 10px;
height: 100%;
}
.projectTitle {
height: 100%;
}
.projectIcon img {
height: 20px;
width: 20px;
}
.projectTitle h3 {
font-size: 1.2em;
font-family: 'Sporting Grotesque_Regular';
color: black;
}
</style>
Run Code Online (Sandbox Code Playgroud)
.is-vcentered仅与以下内容相关的选择器columns:
https ://bulma.io/documentation/columns/options/#vertical-alignment
.columns.is-vcentered {
align-items: center;
}
Run Code Online (Sandbox Code Playgroud)
从 Bulma 0.9.1 开始,我们可以使用flexbox 助手:
与 结合使用
is-flex,所有 Flexbox CSS 属性都可用作 Bulma 助手:
- 弯曲方向
- 柔性包裹
- 证明内容合理
- 对齐内容
- 对齐项目
- 自我对齐
- 弹性增长
- 弯曲收缩
例子:
.columns.is-vcentered {
align-items: center;
}
Run Code Online (Sandbox Code Playgroud)
片段:
<div class="is-align-items-center is-flex"></div>
Run Code Online (Sandbox Code Playgroud)
对于列表 -没有“内置”方式(通过助手)来对齐图标和文本(还)。一种解决方案 - 使用核心is-flex和一种CSS 自定义样式(适用于align-items: center;)。
片段:
<div class="container">
<ul class="list">
<li class="box list-item is-flex is-align-items-center ">
<span class="icon has-text-danger">
<i class="fas has-text-success fa-2x fa-adjust"></i>
</span>
<h2 style="margin-left: 10px; font-size: 60px; line-height: 1;">Hello world</h2>
<h3 style="margin-left: auto;">Right text</h3>
</li>
<li class="box list-item is-flex is-align-content-center">
<span class="icon has-text-danger">
<i class="fas has-text-danger fa-2x fa-exclamation-triangle"></i>
</span>
<h2 style="margin-left: 20px; font-size: 20px;">Item 2</h2>
<h3 style="margin-left: auto;">Right text</h3>
</li>
</ul>
</div>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">Run Code Online (Sandbox Code Playgroud)
/* one custom class (not from bulma core) */
li.vcenter{
align-items: center;
}Run Code Online (Sandbox Code Playgroud)