다음은 CSS를 사용하여 이미지에 탐색 메뉴를 추가하는 코드입니다 -
예시
<!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>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -