JSFiddle - React, Tailwind, and code Playground

by Softlink

HTML

<div>
    <a href="">ссылка</a>
    <a href="" class="link">еще ссылка</a>
</div>

CSS

div {
    width: 300px;
    height: 400px;
    border: 1px solid #ccc;
}

div a{
    display:block;
    color: red;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    font-family: Verdana;
    font-size: 22px;
    background: #ccc;
}

.link{
    display:inline;
    color: #000;
    font-style: normal;
    font-weight: normal;
    font-family: Arial;
    text-decoration: underline;
    font-size: 12px;
    background: none;
}