Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

CSS Transform SCALE : images bug

I've build a simple thing,

<!DOCTYPE html>
<head>
    <style>
    img {
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;}

  img:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    -moz-transform: scale(1.06);
transform: scale(1.06);
transition: .5s ease;
-webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
        }
    </style>
</head>
<body>
    <div style="width: 500px; margin: 50px auto;">
<img src="filter_gewerbe.jpg" >
</div>
</body>
</html> 

But in Mozila and Opera images have some bugs, when finishing zoom :/ they jump a bit in mozzila and something weird in opera