Learn how to create a vertical menu with CSS.
<div class="vertical-menu">
<a href="#" class="active">Home</a>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
<a href="#">Link 4</a>
</div>
.vertical-menu {
width: 200px; /* Set a width if you like */
}
.vertical-menu a {
background-color: #eee; /* Grey background color */
color: black; /* Black text color */
display: block; /* Make the links appear below each other */
padding: 12px; /* Add some padding */
text-decoration: none; /* Remove underline from links */
}
.vertical-menu a:hover {
background-color: #ccc; /* Dark grey background on mouse-over */
}
.vertical-menu a.active {
background-color: #04AA6D; /* Add a green color to the "active/current" link */
color: white;
}
Try it Yourself »
Set a specific height
and add the overflow
property if you want a vertical scroll menu:
Tip: Check out our How To - Side Navigation tutorial to learn how to create a fixed, full-height side navigation.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!