JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">
    Here is some text within this grey box; <a href="#">And here is the link</a>.
</div>

CSS

.box {
    background: grey;
    color: white;
    line-height: 24px;
    padding: 15px;
    width: 290px;
}

.box a {
    background: aqua;
    color: black;
    padding: 5px;
    white-space: nowrap;
}