CSS transition test

by Ian Roberts

HTML

Div2 (hover for animation):<div id="div2"></div>

CSS

div {
    border: 1px dashed;
    width: 100px;
    height: 50px;
    background: url(http://www.terrystickels.com/db_3squaresto8squares5.jpg) no-repeat 0 0;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
}
div {
    background-size: 100%;
}
div:hover {
    background-size: 110%;
}

/*selectors must all be the same either 'div' or '#div2' not a mix*/