JSFiddle - React, Tailwind, and code Playground

by mehulkar

HTML

<div class='wrapper'>
    <div class='full-width'>Something</div>
    <div class='float-right">x</div>
</div>

CSS

.wrapper {
    position:relative;
    width: 500px;
    border: solid 1px #333;
}

.full-width {
    display:block;
    width: 100%;
}
.float-right {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: red;
}