JSFiddle - React, Tailwind, and code Playground

by brandondurham

HTML

<a href="#">Hello!</a>

CSS

body {
    -webkit-font-smoothing: antialiased;
    padding: 50px;
    text-align: center
}
a {
    background: red;
    color: white;
    display: inline-block;
    font: bold 20px/1 Helvetica, Arial, sans-serif;
    line-height: 34px;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
}
a:after {
    content: ' \27BD';
    display: inline-block;
    font-size: 20px;
    padding-left: 10px;
}