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

sean shea
sean shea
22,104 Points

Sass Help

Hello,

I'm pretty new to sass and i'm having trouble getting a certain output. Below is the style

that i'm trying to output. Can someone please give me a hand and maybe some pointers?

ul#menu-footer-navigation li:first-child a:before {
content: "";
}

ul {
     &#menu-footer-navigation{
                list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
        li {
            float: left;
        a {
            display: block;
            color: $primary-blue;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        &:before{
            content: "/";
            }

            }
        } 
    }
}

1 Answer

Aurelian Spodarec
Aurelian Spodarec
10,801 Points

What is the terminal saying to you?