JSFiddle - React, Tailwind, and code Playground

by tjerabek

HTML

<div class="advert full-round">

<div class="advert-info open">Reklama od</div>

</div>

CSS

body{
    padding: 20px;
    font-family: Arial;
}
.advert{
    width: 250px;
    height: 250px;
    border: 1px solid #00a1de;
    position: relative;
}
.advert-info{
    color: white;
    background: #00a1de;
    position: absolute;
    font-size: 0.875em;
    bottom: 0;
    right: 0;
    padding: .5em;
}
.full-round{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}