How to create: Responsive Sidebar

Learn how to use CSS to create a responsive sidebar menu.

Try It Yourself

Create a responsive sidebar navigation

Step 1 - Add HTML:

<!-- Sidebar -->
<div class="sidebar">
  <a class="active" href="#home">Home</a>
  <a href="#news">News</a>
  <a href="#contact">Contact</a>
  <a href="#about">About</a>
</div>
<!-- Page content -->
<div class="content">
  ..
</div>

Step 2 - Add CSS:

/* Sidebar navigation menu */
.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #f1f1f1;
  position: fixed;
  height: 100%;
  overflow: auto;

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;

/* Active/current link */
.sidebar a.active {
  background-color: #04AA6D;
  color: white;

/* Link style on hover */
.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;

/* Page content. The value of the margin-left property should match the width property of the sidebar. */
div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 1000px;

/* On screens smaller than 700 pixels, change the sidebar to a top bar */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  
  .sidebar a {float: left;}
  div.content {margin-left: 0;}

/* On screens smaller than 400 pixels, display the sidebar vertically instead of horizontally */
@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  

Try It Yourself

Related Pages

Tutorial:CSS Navigation Bar