JSFiddle - React, Tailwind, and code Playground

by Никита Егоров

HTML

<div class="block">Какой-то текст</div>

CSS

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.block {
  width: 200px;
  height: 200px;
  padding-top: 40px;
  color: white;
  font-family: sans-serif;
  font-size: 22px;
  text-align: center;
  background: url(https://images.unsplash.com/photo-1535437302298-784ee608da75?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=55da7621b0ce06d3b09ebebd9610c74d&auto=format&fit=crop&w=634&q=80);
  background-size: cover;
}