CSS Sidebars: A Beginner's Guide

Download Now: Free HTML & CSS Coding Templates
Jamie Juviler
Jamie Juviler

Published:

Sidebars are a staple of website navigation — they’re convenient to users and ensure that certain page elements are always in view. Inside them, you can place links, menus, widgets, CTAs, display ads, or just about anything else you want.

css sidebar developer using a laptop in an office

If you’re DIY-ing your website, it’s easy to add sidebars with just a bit of HTML and CSS know-how. You could use a CSS framework like Bootstrap CSS for your sidebar — this template from Start Bootstrap provides a simple, mobile-friendly sidebar interface you can try. Or, you might want a pure CSS implementation.

In this article, you'll learn several ways to make a sidebar with CSS along with some sidebar examples. We’ll make static sidebars, fixed and sticky sidebars, full-page sidebars, sidebars in CSS grids, and collapsible sidebars. That’s a lot to cover, so let’s dive in.

Download Now: 50 Code Templates [Free Snippets]

How to Create a Sidebar in CSS

The simplest way to implement a sidebar is with a static sidebar element (colored blue below) that spans the height of the page and is positioned on the side of the screen.

a full-height CSS sidebar example

To make this, use the following HTML and CSS:

<div class="sidebar"> <div>Menu Item 1</div> <div>Menu Item 2</div> <div>Menu Item 3</div> </div> <div class="body-text"> <!-- body content --> </div> .sidebar { height: 100%; width: 150px; position: absolute; left: 0; top: 0; padding-top: 40px; background-color: lightblue; } .sidebar div { padding: 8px; font-size: 24px; display: block; } .body-text { margin-left: 150px; font-size: 18px; }

This works well, but what if you want the same sidebar elements to be in view at all times? In this case, you can make a fixed sidebar or a sticky sidebar. Let's do a fixed sidebar first.

How to Create a Fixed Sidebar in CSS

A fixed sidebar remains in the same place relative to the viewport (i.e. the visible browser window) when the user scrolls. For example, this sidebar stays pinned to the top left corner of the screen:

a fixed css sidebar

To make this, use the following code:

<body> <div class="sidebar"> <div>Menu Item 1</div> <div>Menu Item 2</div> <div>Menu Item 3</div> </div> <div class="body-text"> <!-- body content --> </div> </body> .sidebar { height: 200px; width: 150px; position: fixed; left: 0; top: 0; padding-top: 40px; background-color: lightblue; } .sidebar div { padding: 8px; font-size: 24px; display: block; } .body-text { margin-left: 150px; font-size: 18px; }

To pin the sidebar to the right side of the viewport, apply the following CSS instead:

.sidebar { height: 200px; width: 150px; position: fixed; top: 0; right: 0; padding-top: 40px; background-color: lightblue; } .sidebar div { padding: 8px; font-size: 24px; display: block; } .body-text { margin-left: 150px; font-size: 18px; }

This flips the sidebar placement:

a sticky css sidebar on the right side of the screen

How to Create a Sticky Sidebar in CSS

Sticky sidebars are similar to fixed sidebars in that they follow you as you scroll down the page.

However, a sticky sidebar element maintains a relative position until it crosses a threshold in the viewport (i.e. the user scrolls past a certain point on the page). At that point, the element stays in place, like a fixed element. This makes the sidebar appear to “stick” to the top of the screen, like so:

css-sidebar-sticky-new

To achieve a sticky sidebar effect, use the following HTML and CSS:

<body> <div class="sidebar"> <div>Menu Item 1</div> <div>Menu Item 2</div> <div>Menu Item 3</div> </div> <div class="body-text"> <!-- body content --> </div> </body> .sidebar { height: 200px; width: 150px; position: -webkit-sticky; /* for Safari users */ position: sticky; top: 0; float: right; margin-top: 100px; padding-top: 40px; background-color: lightblue; } .sidebar div { padding: 8px; font-size: 24px; display: block; } .body-text { margin-left: 150px; font-size: 18px; }

In this code, the position: sticky declaration tells the sidebar div to “stick” to the top border of its parent container, which here is the viewport.

How to Create a Full Height Sidebar in CSS

To extend the sidebar to the bottom of the viewport, set the height property to 100% in your CSS:

.sidebar { height: 100%; width: 150px; position: fixed; top: 0; left: 0; padding-top: 40px; background-color: lightblue; }

As you can see below, the sidebar is fixed and extends to the full height of the browser window, no matter the height dimension of the viewport.

a full-height css sidebar

How to Create a Grid Sidebar in CSS

You can use the CSS grid layout to create a sidebar element. Set your leftmost or rightmost grid item to extend to the bottom of the grid (or as far down as you want it to go), and you’ll end up with something like this:

a css grid sidebar with number labels

Here’s the HTML and CSS code for the example above:

<body> <div id="grid-container"> <div id="box-1">1</div> <div id="box-2">2</div> <div id="box-3">3</div> <div id="box-4">4</div> <div id="box-5">5</div> <div id="box-6">6</div> <div id="box-7">7</div> <div id="box-8">8</div> <div id="box-9">9</div> <div id="box-10">10</div> <div id="box-11">11</div> <div id="box-12">12</div> <div id="box-13">13</div> </div> </body> #grid-container { display: grid; grid-template-columns: auto auto auto; grid-gap: 8px; padding: 8px; } #grid-container div { background-color: lightblue; text-align: center; padding: 30px; font-size: 24px; } #box-1 { grid-row-start: 1; grid-row-end: 7; }

This sidebar element will be positioned relative by default, meaning it will move upwards as the user scrolls downward. You can turn this sidebar element into a sticky element by adding the sticky CSS declarations to the first box element:

#box-1 { grid-row-start: 1; grid-row-end: 7; /* substitute this value for your sidebar’s vertical row height */ height: 200px; position: sticky; top: 0px; }

And voila, the sidebar sticks:

a sticky css grid sidebar

How to Create a Collapsible Sidebar in CSS

Next, let’s cover how to create a collapsible sidebar. This can be handy for secondary navigation because it saves page space by hiding nonessential items.

The easiest way to add a smooth collapsible sidebar involves a bit of JavaScript coding, so brush up on that if you need to. Here’s a simplified version of W3School’s implementation:

<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .sidebar { height: 100%; width: 0; position: fixed; top: 0; left: 0; background-color: lightblue; overflow-x: hidden; transition: 0.5s; padding-top: 60px; } .sidebar div { padding: 8px 8px 8px 30px; font-size: 24px; display: block; transition: 0.5s; cursor: pointer; } .sidebar .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; } .openbtn { font-size: 24px; cursor: pointer; background-color: lightblue; } #main { transition: margin-left .5s; } </style> </head> <body> <div id="mySidebar" class="sidebar"> <div class="closebtn" onclick="closeNav()">×</div> <div>About</div> <div>Services</div> <div>Clients</div> </div> <div id="main"> <button class="openbtn" onclick="openNav()">Open Sidebar</button> <p> (your body text here)) </p> </div> <script> function openNav() { document.getElementById("mySidebar").style.width = "250px"; document.getElementById("main").style.marginLeft = "250px"; } function closeNav() { document.getElementById("mySidebar").style.width = "0"; document.getElementById("main").style.marginLeft = "0"; } </script> </body> </html>

This code produces a collapsible menu. When the “Open Sidebar” and “X” buttons are clicked, the JavaScript code changes the width of the sidebar element. The transition declarations in the CSS animate the growing and shrinking of the menu when the width is changed, so we get the following effect:

a css sidebar that is hidden and expands when a button is clicked

How to Create a Sidebar Navigation Menu in CSS

A sidebar makes a great home for a navigation menu. a CSS sidebar navigation menu isn't too difficult once we have the sidebar built. To do it, we’ll turn our menu item divs into links (using the <a> tag) and add some additional styling for a cleaner look and a more comfortable user experience.

a navigation menu inside a css sidebar

To aid screen readers and provide better accessibility, we’ll also wrap out menu item links in a <nav> tag to denote a navigation menu. Use the following HTML and CSS:

<div class="sidebar"> <nav> <a href="URL">Menu Item 1</a> <a href="URL">Menu Item 2</a> <a href="URL">Menu Item 3</a> </nav> </div> <div class="body-text"> <!-- body content --> </div> .sidebar { height: 100%; width: 150px; position: absolute; left: 0; top: 0; padding-top: 40px; background-color: lightblue; } .sidebar a { padding: 8px; font-size: 24px; display: block; text-decoration: none; } .sidebar a:hover { cursor: pointer; opacity: .7; } .body-text { margin-left: 150px; font-size: 18px; }

CSS Sidebars: Some Testing Required

Sidebars are one of those components that visitors have come to expect, and they’re usually a safe bet for enhancing navigation or adding extra display elements without distracting from the main page content.

It goes without saying, but the methods I’ve described in this post are pretty bare-bones. It’s up to you to apply CSS to personalize your sidebar feature exactly to your liking, so expect a lot of trial and error here (and when working with CSS in general). Still, any of these HTML/CSS templates are a great starting point for a sidebar that improves your navigation and user experience.

Editor's note: This post was originally published in October 2020 and has been updated for comprehensiveness.

New Call-to-action

Related Articles

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

Dozens of free coding templates you can start using right now

CMS Hub is flexible for marketers, powerful for developers, and gives customers a personalized, secure experience

START FREE OR GET A DEMO