JSFiddle - React, Tailwind, and code Playground
HTML
<span class="button"></span>
CSS
.button:before {
content: 'Close';
}
@media screen and (max-width: 200px) {
.button:before {
content: 'X';
}
}
<span class="button"></span>
.button:before {
content: 'Close';
}
@media screen and (max-width: 200px) {
.button:before {
content: 'X';
}
}