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 Layout Basics Page Layout with the Float Property Footer Layout with Floats

challenge task 3 of 4 css layout basics

style.css
/* Complete the challenge by writing CSS below */



.clearfix::after {
  content: "";
  display: table;
  clear: both; }
.footer-nav  { float: left;} .footer-nav li { float: left;  }
.logo { float: right; }
index.html
<!DOCTYPE html>
<html>
<head>
    <title>Getting Started with CSS Layout</title>
    <link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css">
</head>
    <body>
    <div class="container">
        <footer><clearfix::after>
            <img class="logo" src="city-logo.svg" alt="logo">
            <ul class="footer-nav">
                <li><a href="#">Ice cream</a></li>
                <li><a href="#">Donuts</a></li>
                <li><a href="#">Tea</a></li>
                <li><a href="#">Coffee</a></li>
            </ul>
            <p class="copyright">&copy;2015 The Best City.</p>
        </footer>
    </div>
    </body>
</html>
Steven Parker
Steven Parker
229,644 Points

This appears to be one of 4 exact duplicates of the same question. Please post questions only once!

You might want to delete the duplicates, click the little grey rectangle with the 3 dots in it to reveal the delete option.

Still stuck on it

3 Answers

I've finished both of them now thanks for your help

Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,329 Points

Malcolm, glad you are getting help from the Community. As Steven said I would ask you not to post the same questions multiple times. It just clutters up the pages and makes it hard to determine if a question has been solved or not. I deleted a few that were clearly duplicates that were answered in other questions. Also as always thank you Steven for your contributions.

thanks mark i am grateful for all the help received and really enjoying the course thank you all you are a great bunch

I'm not stuck on2 I'm stuck on task 3

Thanks mark I will try not to do the same question over again all this is new to me because I have been a driver for many years but with all of your help I am making progress thank you all

Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,329 Points

You're welcome Malcolm. Glad you are making progress and please keep asking questions when you get stuck. There a great bunch of people here to help you.