I am looking for how to add a game icon to an image in CSS.
I tried this code, but it does not display correctly, I want it to appear in the center:
.video { position: relative; }
.video a {
position: absolute;
display: block;
background: url(http://www.slatecube.com/images/play-btn.png);
height: 100%;
width: 100%;
top: 20px;
left: 20px;
}
html:
<div class="video" >
<img style="height:200px"src="http://san.capitalafrique.com/imatin.net/articles/images/lionel-messi.jpg" />
<a href="#"></a>
</div>
here is jsFiddle:
Demo
source
share