Question:
How can I insert new_icon
inside app_icon
like the image below?
One condition must be met: .img-icon
and .td-icon
cannot be altered
CSS:
.img-icon
max-width: 100%
min-width: 40px
height: auto
vertical-align middle
margin-top 20px
margin-right 20px
.icon_new
?????
.td-icon
width: 30%
margin: auto
HTML:
<p class="td-icon">
<div class="icon_new"><img src="new_icon.png" height="14"></div>
<img class="img-icon" src="app_icon.png" height="72" width="72">
</p>
Image: