Menu
Coddy logo textTech

Unordered list styling

Lesson 10 of 12 in Coddy's Bottom Navigation Bar - HTML/CSS Project course.

Let's remove the unordered list dot's and align the icon's horizontally. 

challenge icon

Challenge

Easy

Target unordered list from navigation class .navigation ul:

  1. Set the display to flex.
  2. Set the justify-content to space-around.
  3. Set the list-style to none.

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

All lessons in Bottom Navigation Bar - HTML/CSS Project