admin管理员组文章数量:1344537
I use TailwindCSS v3 in a Nuxt project a have following settings:
postcss: {
plugins: {
tailwindcss: {
content: ['./src/**/*.{scss,vue}'],
theme: {
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1400px'
},
container: {
center: true,
padding: {
DEFAULT: '20px',
xl: '40px',
},
screens: {
DEFAULT: '1280px',
xl: '100%',
}
},
},
},
},
},
And it works perfectly fine except for container padding. It always uses default settings. In styles I see it overrides padding for the same value.
tailwind.config = {
theme: {
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1400px'
},
container: {
center: true,
padding: {
DEFAULT: '20px',
xl: '40px',
},
screens: {
DEFAULT: '1280px',
xl: '100%',
}
},
},
}
<script src=""></script>
<div class="container bg-gray-100">
<h1 class="text-2xl font-bold text-center">Tailwind Container Example</h1>
<p class="text-center mt-4 bg-red-200">
Click to Full Page for XL
</p>
</div>
I use TailwindCSS v3 in a Nuxt project a have following settings:
postcss: {
plugins: {
tailwindcss: {
content: ['./src/**/*.{scss,vue}'],
theme: {
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1400px'
},
container: {
center: true,
padding: {
DEFAULT: '20px',
xl: '40px',
},
screens: {
DEFAULT: '1280px',
xl: '100%',
}
},
},
},
},
},
And it works perfectly fine except for container padding. It always uses default settings. In styles I see it overrides padding for the same value.
tailwind.config = {
theme: {
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1400px'
},
container: {
center: true,
padding: {
DEFAULT: '20px',
xl: '40px',
},
screens: {
DEFAULT: '1280px',
xl: '100%',
}
},
},
}
<script src="https://cdn.tailwindcss"></script>
<div class="container bg-gray-100">
<h1 class="text-2xl font-bold text-center">Tailwind Container Example</h1>
<p class="text-center mt-4 bg-red-200">
Click to Full Page for XL
</p>
</div>
Share
Improve this question
edited yesterday
rozsazoltan
10.7k6 gold badges19 silver badges51 bronze badges
asked yesterday
ZloiGorohZloiGoroh
4654 silver badges14 bronze badges
1 Answer
Reset to default 1The problem is that you are asking the container to be 100%
in size from xl onward. However, it adjusts the padding relative to this, like this:
@media (min-width: 100%) { /* Error */
.container {
max-width: 100%;
padding-right: 40px;
padding-left: 40px;
}
}
But this would not be valid syntax, as only calculable values like px
, em
, rem
, vw
, etc. should be used. See:
@media (min-width: 100vw) {
.container {
max-width: 100vw;
padding-right: 40px;
padding-left: 40px;
}
}
tailwind.config = {
theme: {
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1400px'
},
container: {
center: true,
padding: {
DEFAULT: '20px',
xl: '40px',
},
screens: {
DEFAULT: '1280px',
xl: '100vw', // instead of '100%',
}
},
},
}
<script src="https://cdn.tailwindcss"></script>
<div class="container bg-gray-100">
<h1 class="text-2xl font-bold text-center">Tailwind Container Example</h1>
<p class="text-center mt-4 bg-red-200">
Click to Full Page for XL
</p>
</div>
And it's important to note that in this case, 100vw
might be smaller than 1280px
, so it could take effect earlier on smaller screens. I would rather use fixed values for more reliable results.
tailwind.config = {
theme: {
screens: {
xs: '375px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1400px'
},
container: {
center: true,
padding: {
DEFAULT: '20px',
xl: '40px',
},
screens: {
DEFAULT: '1280px',
xl: '1400px', // instead of '100%',
}
},
},
}
<script src="https://cdn.tailwindcss"></script>
<div class="container bg-gray-100">
<h1 class="text-2xl font-bold text-center">Tailwind Container Example</h1>
<p class="text-center mt-4 bg-red-200">
Click to Full Page for XL
</p>
</div>
本文标签: nuxtjsTailwind padding settings for containerStack Overflow
版权声明:本文标题:nuxt.js - Tailwind padding settings for container - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799055a2540970.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论