Tailwind balances abstraction and transparency

from blog Zarar's blog, | ↗ original
.blink_me { animation: blinker 3s linear infinite; } @keyframes blinker { 50% { opacity: 0; } } I remember writing my first CSS file in Dreamweaver (still around) and it blew my mind that I no longer needed to use font, center, b, i, s, u and blink. The idea of separation of concerns between content and design was revolutionary (or at...