我有这个问题,我在论坛中搜索但没有找到任何相关内容。
我正在尝试将 justify-center 用于小屏幕,将 justify-end 用于大屏幕。阅读文档我发现了这个:
因此,我尝试将其用作justify-sm-center
但justify-lg-end
无法使其工作。我做了这个小提琴来演示它:
https://jsfiddle.net/leoprada/3b40vn6g/
<div class="row">
<p>Class: justify-center applied when BP lg (justify-lg-center) and justify-end on BP sm (justify-sm-end) </p>
<div class="row col-12 justify-sm-end justify-end-sm justify-lg-center bg-black">
<div class="col-sm-4 col-lg-6 bg-blue q-py-md text-center">
col-4
</div>
<div class="col-4 bg-green q-py-md text-center">
Col-4
</div>
</div>
</div>
我真的不知道我是否做错了什么。
(我知道如何使用 CSS 自己让它工作,但我当然更愿意使用预定义的 quasar 类)