I have the following div with these features
HTML CODE
<div id="arrastreImagen">
<span><i class="fa fa-times btn btn-danger"></i></span>
<div id="imagenBeer"><img src="~/Content/assets/birras/imperial.png"
class="img-thumbnail"></div>
</div>
CSS CODE
#arrastreImagen {
position: relative;
margin: 20px auto;
height: auto;
text-align: center;
border: 2px dashed #ccc;
color: #999;
padding: 20px;
}
#arrastreImagen #imagenBeer {
position: relative;
margin: auto;
width: 75px;
height: auto;
}
How can I position the "x" button in the upper right corner and not just stand on top of the image?