Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<meta charset=utf-8>
<style>
.icon {
width: 200px;
height: 200px;
background-color: blue;
margin-right: 5px;
display: inline-block;
vertical-align: top;
}
.img-wrapper {
display: block;
width: 100px;
height: 100px;
background-color: purple;
}
.zoom {
zoom: 2;
}
</style>
<div class="icon">
<div class="img-wrapper">
<img src="/images/green.png">
</div>
</div>
<div class="icon zoom">
<div class="img-wrapper">
<img src="/images/green.png">
</div>
</div>