Computer >> Máy Tính >  >> Lập trình >> CSS

Làm cách nào để thêm menu điều hướng trên hình ảnh bằng CSS?

Sau đây là đoạn mã để thêm menu điều hướng trên hình ảnh bằng CSS -

Ví dụ

<!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>

Đầu ra

Đoạn mã trên sẽ tạo ra kết quả sau -

Làm cách nào để thêm menu điều hướng trên hình ảnh bằng CSS?