<button class="btn bg-red">Button</button>
@layer components, utilities;
@layer components {
.btn {
background-color: blue;
color: white;
}
}
@layer utilities {
.bg-red {
background-color: red;
color: white;
}
}
button {
background-color: yellow;
color: black;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.