【发布时间】:2024-05-03 02:00:02
【问题描述】:
我正在尝试对齐四个文本,每个角一个(如名称所示)。 TopLeft 和 TopRight 在正确的位置对齐,但 BottomLeft 和 BottomRight 就在它们下方,而不是在页面底部。..
<v-content>
<v-container fluid fill-height >
<v-row align='start'>
<v-col cols='1'>
<p>TopLeft</p>
</v-col>
<v-col cols='10'>
</v-col>
<v-col cols='1'>
<p>TopRight</p>
</v-col>
</v-row>
<v-row align='end'>
<v-col cols='1'>
<p>BottomLeft</p>
</v-col>
<v-col cols='10'>
</v-col>
<v-col cols='1'>
<p>BottomRight</p>
</v-col>
</v-row>
</v-container>
</v-content>
我做错了什么? 谢谢
【问题讨论】:
标签: html vue.js vuetify.js