transform:scale() and zoom

by fredd man

HTML

<div class="box">Box</div>

CSS

.box {
    background-color: #9cf;
    height: 100px;
    margin: 50px;
    -webkit-transition: -webkit-transform .2s;
    transition: transform .2s;
    width: 100px;
}
.box:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    zoom: 1.3;
}