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

HTML HTML Lists HTML Lists

Glitch in the table challenge task

I'm at the part where it says to make a nested ordered list inside of the shapes area...

I'm quite sure I did it, I even looked at the preview to confirm, but it says I have it wrong... Someone fix this please?

1 Answer

Stone Preston
Stone Preston
42,016 Points

Nested lists need to go inside a list item like so:

<ul>

    <li>List item two with a list nested inside it
        <ul>
            <li></li>
        </ul>
    </li>

</ul>

so make sure your nested list is inside the list item tag