JSFiddle - React, Tailwind, and code Playground

by Valentin Sarychev

HTML

<article class="good">
    <a class="btn pull-right" href="#">Купить</a>
    <p class="price">2 500 руб.</p>
</article>

CSS

.btn {
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
}

.pull-right {
    float: right;
}

.good {
    width: 200px;
}

.good .price {
    padding: 10px 0;
    text-align: center;
    background: #eee;
}