JSFiddle - React, Tailwind, and code Playground

by Mostafa Zeinivand

HTML

<span id="first" class="spn">text</span>
<span id="second" class="spn">text</span>
<span id="third" class="spn">text</span>
<span id="fourth" class="spn">text</span>

CSS

.spn{
    display:inline;
    background:#009933;
    margin:5px;
    padding:5px;
}
#first{
    text-decoration:none;
}
#second{
    text-decoration:underline;
}
#third{
    text-decoration:overline;
}
#fourth{
    text-decoration:line-through;
}