JSFiddle - React, Tailwind, and code Playground
by cahnory
HTML
<div class="test">
test
</div>
<div class="test-2">
test2
</div>
CSS
div { position: relative }
.test {
transition: all .4s;
top: -20px;
}
.test:not([foo]) {
top: 0;
}