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

yakov sachuk
yakov sachuk
4,768 Points

How can I add a moving head line above a zooming background-image?

this is the zooming background-image:

html

<div class="wallpaper">
            <img src="imag/skate_shop.jpg" class="image">   
        </div>

css

.wallpaper{
    overflow: hidden;
    width: 609px;
    margin-left:330px ;
    margin-top: 50px;
    height: 400px;

    }
.image{
    width: 609px;
    transition: all .2s ease-in-out; 
}

.image:hover{

    transform: scale(1.1);
}

Now to this zooming-image,I want to add an heading line ,which will move to bottom as the mouse points on on the image.