×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
CSS Button property applies color effect on button using CSS. Horizontal Navigation Bar Creation using CSS and HTML
Vertical Navigation Bar Creation using CSS and HTML. - CSS 3.0
3811    Arnab De    12/05/2017

Vertical Navigation Bar Creation using CSS

Navigation bar is a important part of 90% website. using this nav bar we can easily access the whole website easily. Navbar may create We can convert a normal list of HTML into an interactive navigation Bar using little bit CSS code. Here we demonstrate how can we create a simple vertical menu.A simple HTML code to display a list in the browser

<!DOCTYPE html>
<html>
<head><title>Vertical menu Demo</title>
</head>
<body>
<ol>
<li><a href="#">Menu1</a></li>
<li><a href="#">Menu2</a></li>
<li><a href="#">Menu3</a></li>
<li><a href="#">Menu4</a></li>
</ol>
</body>
</html>

softetechnologies

This code will generate the following output

Simple HTML Menu
Simple HTML Menu

Vertical Navigation Bar 

Now for display a vertical menu, we use the following code

<!DOCTYPE html>
<html>
<head><title>Vertical menu Demo</title>
<link href="menu.css" rel="stylesheet" type="text/css">
</head>
<body>
<ol class=”vmenu”>
<li><a href="#">Menu1</a></li>
<li><a href="#">Menu2</a></li>
<li><a href="#">Menu3</a></li>
<li><a href="#">Menu4</a></li>
</ol>
</body>
</html>

softetechnologies

And write the following code in menu.css file

.vmenu
{
width:100px;
}
.vmenu li
{
display:block;
list-style:none;
padding:15px;
background-color:#ffffcc;
border-style:solid;
border-width:thin;
border-color:#ff0000;
}
.vmenu li a
{
text-decoration:none;
color:#ff0000;
}
.vmenu li a:hover
{
background-color:#000000;
text-transform:uppercase;
color:#ffffff;
}
.vmenu li:hover
{
background-color:#000000;
}

Vertical Menu With CSS
Vertical Menu With CSS
softetechnologies

Video Tutorials

CSS Button property applies color effect on button using CSS. Horizontal Navigation Bar Creation using CSS and HTML
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
Pure mathematics is, in its way, the poetry of logical ideas.
Albert Einstein
1387
72.06
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     51821
25/06/2018     43666
01/01/2018     42783
28/06/2017     40511
02/08/2017     39332
01/08/2017     33542
06/07/2017     33297
15/05/2017     32660
14/07/2017     28870
11/09/2018     28675
softetechnologies