birdy
birdy
KPCKevin Powell - Community
Created by birdy on 7/11/2024 in #front-end
Does tailwind reset padding, margin, box-sizing?
Does tailwindCSS add these out of the box? I learned I should always add these styling to global css. After adding tailwind I added these to index.css but nothing happened. But I also didn't find in the code if it's added out of the box?
*,
*::before,
*::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
*,
*::before,
*::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
11 replies