HTML & CSS

How to Build a Responsive Menu with Flexbox – 2020

In this tutorial, you will learn how to make equal flexbox responsive menu for beginners. I have used some trial and error methods so beginners can understand very easily. And relax while watching the video. You will get the proper results in the end.

You can watch the full video and understand better way step by step.

1.  Create HTML File index.html

<!DOCTYPE html>
<html>
<head>
    <meta charset='utf-8'>
    <meta http-equiv='X-UA-Compatible' content='IE=edge'>
    <title>Responsive Flex Menu</title>
    <meta name='viewport' content='width=device-width, initial-scale=1'>
    <link rel='stylesheet' type='text/css' media='screen' href='style.css'>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        $(document).ready(function(){
            $('.toggle').click(function(){
                $('.item').toggle();
            });
        });
    </script>
</head>
<body>
    
    <nav>
        <ul class="menu">
            <li class="logo"><a href="#">Responsive Flex Menu</a></li>
            <li class="item"><a href="#">Home</a></li>
            <li class="item"><a href="#">About</a></li>
            <li class="item"><a href="#">Service</a></li>
            <li class="item"><a href="#">Contact</a></li>
            <li class="toggle"><span class="bars"></span></li>
        </ul>
    </nav>
</body>
</html>

2. Create CSS file style.css

*{
    margin:0px;
    padding:0px;
}

body{
    font-family: 'Courier New', Courier, monospace;
}

nav{
    background: #222;
    padding: 20px;
}

a{
    color:#fff;
    text-decoration: none;
}

ul{
    list-style-type: none;
}

.menu{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu li{
    font-size: 16px;
    padding: 15px;
}

.logo{
    flex: 1;
}

.logo a{
    font-size: 20px;
}

@media all and (max-width:768px){
    .item{
        width: 100%;
        display: block;
        align-items: center;
        text-align: center;
        display: none;
        order:3;
    }

    .toggle{
        order:2;
        cursor: pointer;
    }
    .logo{
        order:1;
    }

    .bars{
        width: 30px;
        height: 2px;
        position: relative;
        display: inline-block;
        background: #fff;
    }

    .bars::after, .bars::before{
        content: '';
        width: 30px;
        height: 2px;
        position: absolute;
        display: inline-block;
        background: #fff;
    }
    .bars::after{
        top:-5px;
    }
    .bars::before{
        top:5px;
    }
}
Developer Diary

Share
Published by
Developer Diary

Recent Posts

Git Tag Cheat Sheet

Introduction Git tags are an essential feature of version control systems, offering a simple way…

2 months ago

Understanding Web Storage: Cookies, Local Storage

Introduction The methods that browsers employ to store data on a user's device are referred…

3 months ago

Setting up OpenVPN Access Server in Amazon VPC – AWS

Introduction A well-known open-source VPN technology, OpenVPN provides strong protection for both people and businesses.…

3 months ago

Enhance Error Tracking & Monitoring: Integrate Sentry with Node.js & Express.js

Introduction Integrating Sentry into a Node.js, Express.js, and MongoDB backend project significantly enhances error tracking…

3 months ago

Comparing Callbacks, Promises, and Async/Await in JavaScript

Introduction In the world of JavaScript development, efficiently managing asynchronous operations is essential. Asynchronous programming…

5 months ago

How To Secure Nginx with Let’s Encrypt on Ubuntu EC2 Instance

Introduction Let's Encrypt is a Certificate Authority (CA) that makes it simple to obtain and…

7 months ago