Progress image

by anup1986

HTML

<div id="test">
<div id="progress">
    <img src="https://awesomecloudstorage.blob.core.windows.net/aep/images/badges/diamant_grey.png" />
</div>
    </div>

CSS

#test {
    position: absolute;
    height: 90px;
    width: 140px;
    padding: 10px 20px 0 20px;
    box-sizing: border-box;
    border: 1px solid #000;
}

#progress {
    width: 100px;
    height: 100px;
    background-image: url('https://awesomecloudstorage.blob.core.windows.net/aep/images/badges/diamant_color.png');
    background-repeat: no-repeat;
}

img {
    position: absolute;
    clip: rect(0px, 100px, 100px, 33px);
    // change the last argument.
}