如何根据 Vuetify 中的显示/断点更改边距

发布于 2025-01-09 22:50:02 字数 175 浏览 0 评论 0原文

我知道可以根据显示/断点在 Vuetify 上设置边距。

当断点/显示为“s”或“xs”时,如何以 margin-top 为 0 的方式更改以下类:

<v-text-field class="mt-5" field> </v-text-field>

I know it is possible to set the margin on Vuetify based on the display/breakpoints.

How can I change the following class in a way that margin-top will be 0 when the breakpoint/display is "s" or "xs" :

<v-text-field class="mt-5" field> </v-text-field>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风轻花落早 2025-01-16 22:50:02
class="mt-sm-5 mt-0"

你可以这样读:如果屏幕比 sm 断点宽,则使用 mt-5,否则使用 mt-0

class="mt-sm-5 mt-0"

you can read it like this: use mt-5 if screen is wider than sm breakpoint, else use mt-0

与酒说心事 2025-01-16 22:50:02

除了 Romalex 答案之外,这是 Vuetify 中断点的完整列表

I知道这不是您想要的答案,但我想分享另一种使用类条件在屏幕上设置行为的方法。举个例子:

:class="[$vuetify.breakpoint.smAndDown?'class-1':'class-2']"

干杯~

In addition of Romalex answer, here's a full list of Breakpoint in Vuetify

I know it's not the answer you want to, but I want to share another way to set the behaviour on screen using class conditional. Here's an example:

:class="[$vuetify.breakpoint.smAndDown?'class-1':'class-2']"

Cheers~

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文