JSFiddle - React, Tailwind, and code Playground

by the wazz

HTML

<table>
    <tr>
        <td>
            <a href="aboutelement">
                <strong>Li</strong>
                <span class="atomicnumber">3</span>
                <em>Lithium</em>
                <span class="atomicweight">6.939</span>
            </a>
        </td>
    </tr>
</table>

CSS

td {
    background: linear-gradient(#eee 48%, green, #eee 52%);
    padding: 10px;
}

a {
    color: #000;
    font-size: 22px;
}