1
I’m trying to apply a solution in a div in my project, but I’m not succeeding, I did a test in Jsfiddle worked, as can be seen here, by my limitation in css I’m having difficulty implementing.
.produtos-wrapper{
position:relative;
}
.imagem-mascara {
width:100px; /* largura da imagem máscara */
height:68px; /* altura da imagem máscara */
position:absolute;
top:0;
left:0;
background:url(http://moveissaobento.com.br/msb/imagens/tag-lancamento.png) 0 0 no-repeat; /* imagem máscara */
}
<div class="produtos-wrapper">
<img src="http://moveissaobento.com.br/msb/imagens/img.png" width="191" height="117" border="0" />
<div class="imagem-mascara"></div>
</div>
And I need to apply on my website in this case here:
See that the image is in the top corner of the site.
Try using selectors like :before or :after in your css, it might help, search and test :) Tip: http://tableless.com.br/como-usar-before-after/
– Rafael Withoeft