gpt4 book ai didi

vuetify.js - Vuetify : grid layout with five columns

转载 作者:行者123 更新时间:2023-12-01 11:15:33 29 4
gpt4 key购买 nike

Vuetify 使用 12 点网格系统。由于 12 不能被 5 整除,如何创建一个具有 5 列相同宽度的网格? 5 列应占用所有可用空间。

什么是最“正确”的方法来做到这一点?

编辑:
我试图实现 John M 的评论,但它没有填满所有可用的水平空间:

<v-container>
<v-card color="red">
<v-layout wrap align-content-space-around text-xs-center>
<v-flex xs1></v-flex>
<v-flex xs2><v-card color="blue"><v-card-text class="px-0">1</v-card-text></v-card></v-flex>
<v-flex xs2><v-card color="blue"><v-card-text class="px-0">2</v-card-text></v-card></v-flex>
<v-flex xs2><v-card color="blue"><v-card-text class="px-0">3</v-card-text></v-card></v-flex>
<v-flex xs2><v-card color="blue"><v-card-text class="px-0">4</v-card-text></v-card></v-flex>
<v-flex xs2><v-card color="blue"><v-card-text class="px-0">5</v-card-text></v-card></v-flex>
<v-flex xs1></v-flex>
</v-layout>
</v-card>
</v-container>

我希望红色区域消失:
enter image description here

最佳答案

我也需要一个五列布局,我发现了一些对我有用的东西。我需要 lg 的五列布局屏幕,所以我在我的 css 中添加了这些规则:

https://codepen.io/rekam/pen/JmNPPx

/* vuetify lg min breakpoint: 1280 - 16     = 1264px */
/* vuetify lg max breakpoint: 1920 - 16 - 1 = 1903px */

@media (min-width: 1264px) and (max-width: 1903px) {
.flex.lg5-custom {
width: 20%;
max-width: 20%;
flex-basis: 20%;
}
}

您需要在媒体查询中指定 min 和 max,因为您不需要, 20%规则将适用于所有尺寸。只需在您的模板中使用它,如下所示:
<!-- md4 is just here as an example -->
<v-layout row wrap>
<v-flex md4 class="lg5-custom">box 1</v-flex>
<v-flex md4 class="lg5-custom">box 2</v-flex>
<v-flex md4 class="lg5-custom">box 3</v-flex>
<v-flex md4 class="lg5-custom">box 4</v-flex>
<v-flex md4 class="lg5-custom">box 5</v-flex>
<v-flex md4 class="lg5-custom">box 6</v-flex>
<v-flex md4 class="lg5-custom">box 7</v-flex>
</v-layout>

关于vuetify.js - Vuetify : grid layout with five columns,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51894815/

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