JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://dummyimage.com/600x400/000/fff&text=I+am+an+IMAGE.+And+I+want+a+h2+with+WORKING+padding+below+me!" alt="image!" />
<h2>Am I invisible?</h2>
CSS
img {
position: static
;
top: 0;
}
h2 {
clear: both; /* doesn't help */
position:relative; /* the same :( */
top:400px
}