[Solved] How to use CSS and HTML tags to put a text follows a centered picture?
https://jsfiddle.net/11h8gn8s/ This is also works: <div class=”wrapper”> <img src=”http://placehold.it/350×150″> <div class=”text”> <p> Words </p> </div> </div> .wrapper { position: relative; text-align: center; } .text { display: inline-block; position: absolute; } solved How to use CSS and HTML tags to put a text follows a centered picture?