JSFiddle - React, Tailwind, and code Playground
by Kate Masiuk
HTML
<div>
<img src="http://htmlbook.ru/files/android.png" class="android-shadow">
<p class="text-under-picture">Рис. 1</p>
</div>
CSS
div {
position: absolute;
left: 200px;
}
.android-shadow {
box-shadow: inset 0 0 6px;
padding: 7px;
}
.text-under-picture {
font-style: oblique;
position: inherit;
left: 10px;
}