JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="title">
twój tytuł
</div>
</div>
CSS
.container{
width:500px;
min-height:500px;
border:solid 1px red;
position:relative;
}
.title{
position:absolute;
right:0px;
top:0px;
border:solid 1px blue;
width:150px;
height:50px;
}