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 Foundations The Box Model Positioning Properties

I can't seem to get this one. Here is my code: .button{ position: relative; left: 80px; top: -20px; }

I am getting the BUMMER!!! on this one. I am sure it is with the movie it up -20px code. HELP

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Positioning</title>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="wrapper">
        <div class="top">Top</div>
        <div class="middle">Middle</div>
        <div class="bottom">Bottom</div>
    </div>
</body>
</html>
style.css
/* Complete the challenge by writing CSS below */
.wrapper{
position: relative;
}
.middle { position: relative; left: 100px; }
.top{ position: absolute; top: 50px; }
.button{ position: relative; left: 80px; top: -20px; }

1 Answer

There is nothing in your html with the class 'button'. You probably want the '.button' in your css to read '.bottom'.