如何根据 Vuetify 中的显示/断点更改边距
我知道可以根据显示/断点在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样读:如果屏幕比 sm 断点宽,则使用 mt-5,否则使用 mt-0
you can read it like this: use mt-5 if screen is wider than sm breakpoint, else use mt-0
除了 Romalex 答案之外,这是 Vuetify 中断点的完整列表
I知道这不是您想要的答案,但我想分享另一种使用类条件在屏幕上设置行为的方法。举个例子:
干杯~
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:
Cheers~