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

scroll to top link

How would I target this in css?

<a href="#top"><img src="img/backtotop.png"></a>

I've added a little arrow and want to make it smaller.

3 Answers

You could wrap it in a div and give it a class,

         <div class="your_class">
          <a href="#top"><img src="img/backtotop.png"></a>
        </div>

If you wanted to target the img you would use;

    .your_class img { 
        height: 20px; 
     } 

Yes! Thank you! :)

No problem :)