Override default resource icon with data-attr CSS3 spec

by codef0rmer

HTML

<div></div>

<div style="background-image:url(https://www.google.co.in/images/srpr/logo11w.png);"></div>

CSS

div {
    background: url(http://hurix.com/wp-content/uploads/2013/04/logo1.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 100px;    
    background-size: contain;
}