Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* Tailwind approach: utilities in last @layer */ @layer base, components, utilities; @layer utilities { .mt-4 { margin-top: 1rem; } .text-red { color: red; } } /* Bootstrap approach: inline !important on utility classes */ .mt-3 { margin-top: 1rem !important; } .d-none { display: none !important; }
Result
Open