Using the :after
pseudo element, I created a caption for the image. How can I make the caption stay on top of the image and not below?
.estrutura{
width:10%;
height:30%;
}
.estrutura:after{
position: fixed;
content:"Estrutura";
width:20%;
height:20px;
background-color: blue;
}
<div class="estrutura">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Biandintz_eta_zaldiak_-_modified2.jpg/550px-Biandintz_eta_zaldiak_-_modified2.jpg">
</div>