【发布时间】:2021-10-05 04:39:30
【问题描述】:
在我的应用程序中,我使用justify="end" 的结束对齐按钮。如果屏幕较小(例如平板电脑),我想将其更改为居中对齐 - justify="center"。
我的代码:
<template>
<v-row justify="end" >
<v-col cols="5">
<v-btn
to="/"
>Back</v-btn
>
</v-col>
</v-row>
</template>
我也尝试过使用类似这样的 css 样式,但它不起作用:
<style scoped>
@media (max-width: 800px) {
.justify{
justify: center;
}
}
</style>
【问题讨论】:
标签: css vue.js vuetify.js justify