Computer >> Computer tutorials >  >> Programming >> CSS

How to add a navigation menu on an image with CSS?


Following is the code to add a navigation menu on an image using CSS −

Example

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
   margin:0px;
   margin-top:10px;
   padding: 0px;
}
nav{
   width: 50%;
   background-color: rgb(23, 104, 43);
   overflow: auto;
   height: auto;
}
.links {
   display: inline-block;
   text-align: center;
   padding: 14px;
   color: rgb(255, 255, 255);
   text-decoration: none;
   font-size: 17px;
}
.links:hover {
   background-color: rgb(129, 123, 123);
}
.selected{
   background-color: rgb(0, 56, 42);
}
.image-nav{
   background:url('https://i.picsum.photos/id/652/1366/1366.jpg');
   min-height: 400px;
   padding: 20px;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   width: 70%;
}
</style>
</head>
<body>
<div class="image-nav">
<nav>
<a class="links selected" href="#">Home</a>
<a class="links" href="#">Login</a>
<a class="links" href="#"> Register</a>
<a class="links" href="#">Contact Us</a>
<a class="links" href="#">More Info</a>
</nav>
</div>
</body>
</html>

Output

The above code will produce the following output −

How to add a navigation menu on an image with CSS?