Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有机会改变它,或者我必须在 Tailwind 中使用移动优先的方法?
转到您的tailwind.js配置文件,查找该screens部分。默认情况下,您会找到如下屏幕尺寸列表'sm': '576px':Tailwind 默认使用最小宽度,您可以更改这些值'sm': {'max':'576px'}以强制使用最大宽度。
tailwind.js
screens
'sm': '576px'
'sm': {'max':'576px'}