JSFiddle - React, Tailwind, and code Playground
by Gothor
HTML
<div>Test<br />Encore</div>
CSS
div:before {
position : absolute;
top : 4px;
left : -12px;
content : '\25c0';
color : black;
}
div {
position : relative;
margin-left : 20px;
padding : 5px;
color : white;
background : black;
border-radius : 5px;
font-family : arial;
width : 200px;
}
div:hover:after {
position : absolute;
right : 4px;
top : 2px;
font-family : Verdana;
content:'x';
}