gpt4 book ai didi

css - 如何在 tailwind-css 中自定义容器宽度?

转载 作者:行者123 更新时间:2023-12-05 03:38:12 27 4
gpt4 key购买 nike

2xl 的 tailwind CSS 容器宽度不是我想要的。我该如何改变它? enter image description here

我想删除 2xl 中的默认宽度。我该怎么做?

最佳答案

仅向 tailwind.config.js 添加必要的断点。您可以在 tailwind theme config 中看到默认值

module.exports= {
theme: {
screens: {
'sm': '640px', // => @media (min-width: 640px) { ... }
'md': '768px', // => @media (min-width: 768px) { ... }
'lg': '1024px', // => @media (min-width: 1024px) { ... }
'xl': '1280px', // => @media (min-width: 1280px) { ... }
}
}
}

关于css - 如何在 tailwind-css 中自定义容器宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69039637/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com