CSSを使用して画像にナビゲーションメニューを追加するにはどうすればよいですか?
以下は、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>
出力
上記のコードは次の出力を生成します-
-
CSSを使用して画像にボタンを追加するにはどうすればよいですか?
以下は、CSSを使用して画像にボタンを追加するためのコードです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img{ width: 100%; } div { position: relative; width: 100%; &nb
-
内部に入力フィールドがあるナビゲーションメニューを作成するにはどうすればよいですか?
以下は、入力フィールドを含むナビゲーションメニューを作成するためのコードです- 例 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body {