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 CSS Layout Techniques Display

The <ul> with the class main-list is a block-level element by default, so it takes up its container's full width. Set .

any help

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

header {
  text-align: center;
}
.logo {
  width: 60px;
  margin: auto;
}
.main-list li {
  display:inline-block;
}
.main-list li a {
  display:inline;
}
index.html
<!DOCTYPE html>
<html>
<head>
    <title>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">
        <header>
            <img class="logo" src="city-logo.svg" alt="An illustration of a building">
            <ul class="main-list">
                <li><a href="#">Donuts</a></li>
                <li><a href="#">Tea</a></li>
                <li><a href="#">Coffee</a></li>
            </ul>
        </header>
    </div>
    </body>
</html>
Claire Tregunna
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Claire Tregunna
Front End Web Development Techdegree Graduate 37,975 Points

So here it looks like you need to set the width of the <ul> and set it's display.

I suggest removing the rule you have for .main-list li a and adding in

.main-list {
  width: 100%;
  display: inline-block;
}

Hope this helps

Thank Claire, I got it... Bye..

2 Answers

Hi Boris ( & Claire)!

This passes all three tasks

/* Complete the challenge by writing CSS below */

header {
  text-align: center;
}
.logo {
  display: block; /*** Task 3 ***/
  width: 60px;
  margin: auto;
}
.main-list,     /*** Task 2 ***/
.main-list li { /*** Task 1 ***/
  display: inline-block;
}

Keep in mind that block makes an element take up the full width of the parent container whereas inline-block makes an element only as wide as its content (and padding).

More info:

https://www.w3schools.com/css/css_inline-block.asp

I hope that helps.

Stay safe and happy coding!

Hi Peter Great, I appreciate your support bro, thanks a lot see you..