JSFiddle - React, Tailwind, and code Playground

by Богдан Криворучко

HTML

<div class="wrapper">
<div class="number">33</div>
<p class="text">Всякийразный текст</p>
</div>

CSS

.wrapper {
    font-size: 14px;
    position: relative;
    display: inline-block;
}

.number {
    font-size: 60px;
}

.text {
    position: absolute;
    width: 100%;
    word-wrap: break-word;
}