JSFiddle - React, Tailwind, and code Playground

HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="h0"><span class="h1">Первая строка</span><br><span class="h2">Вторая строка</span><br><span class="h3">Третья строка</span></div>
</body>
</html>

CSS

.h0{ background:#ccc; height:200px; position: relative;}
.h1, .h2, .h3 {position: absolute;}
.h1{font-size:64px; bottom:80px;}
.h2{font-size:48px; bottom:32px;}
.h3{font-size:32px; bottom:0px;}