I have tried to position two images, this way
The tear is a picture .png
This is the html structure
<div class="intertTa">
<div class="ta borderes ico">
<img src="...">
<img class="bad" src="/content/img/asesores/lagrima-asesor.png">
</div>
<div class="ta name"><span>Leonidas Segura</span></div>
<div class="ta sale"><span>1,100</span><small>Ventas</small></div>
<div class="ta price">
<div><span>34,000</span><small>mxn</small></div>
<div class="porcentajev">
<div class="hakogreenini">
<div class="item">1</div>
<div class="itemTotal">47,450 <small>mxn</small></div>
</div>
</div>
</div>
</div>
LESS
.ico {
width: 104px;
height: 104px;
img {
width: 104px;
height: 104px;
z-index: 0;
}
/*.rules {
margin: auto;
position: absolute;
z-index: 2;
width: 104px;
height: 104px;
left: 0;
right: 0;
top: 0;
bottom: 0;
}*/
.bad {
position: absolute;
z-index: 1;
width: 22px;
height: 25px;
bottom: 29px;
left: 100px;
}
}
but by showing it in other more basic browsers, the tear goes up and does not stay in place
is more or less where the blue dot is, I would like to know how I can overcome the tear without using position: absolute or what I can improve so that this does not happen in very basic browsers