JSFiddle - React, Tailwind, and code Playground
by angry_bender
HTML
<ul>
<li> me default </li>
<li class='action'> me red </li>
</ul>
CSS
ul li.action {
color: red;
}
ul li {
color: blue;
}
by angry_bender
<ul>
<li> me default </li>
<li class='action'> me red </li>
</ul>
ul li.action {
color: red;
}
ul li {
color: blue;
}