HTML CSS NAVBAR KÜÇÜLTME
Arkadaşlar Bir Navbar yaptım ben şimdi bu navbar ekran küçüldüğü zaman misal %50 küçüldü küçük bir hale dönüşsün istiyorum
hamburger menü gibi aşağı açılacak bir biçimde Kodlarımı Atayım Yanlışlarım Var ise Beni bilgilendirin lütfen yeni yeni
öğrenmeye çalışıyorum.
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>asd</title>
<link rel="stylesheet" href="Selamlar.css">
</head>
<body>
<nav class="Selamlar">
<ul class="menu">
<li><a href="#" class="Anasayfa">Anasayfa</a></li>
<li><a href="#" class="hakkimizda">Hakkımızda</a></li>
<li><a href="#" class="kimiz">Kimiz Biz</a></li>
<li><a href="#" class="iletisim">İletişim</a></li>
<li><a href="" class="sosyal">Sosyal Medya</a></li>
</ul>
</nav>
<img src="agency/assets/img/Logo2.png" alt="">
</body>
</html>
css
body {
margin: 0;
padding: 0;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(121,9,117,1) 35%, rgba(0,212,255,1) 100%);
font-family: 'Roboto', sans-serif;
height: 100vh;
overflow: hidden;
width: 100vw;
}
ul {
opacity: 0.8;
overflow: hidden;
list-style-type: none;
float: left;
margin: 0;
padding: 0%;
background-color: #262626;
width: 1500px;
padding: 20px;
border-radius: 25px;
}
li{
float: left;
}
li a {
color: white;
text-align: center;
padding: 14px 85px;
text-decoration: none;
}
li a:hover {
}
.Selamlar
{
width: 80%;
height: 58;
margin: auto;
}
.hakkimizda{
width: 285px;
height: 45px;
cursor: pointer;
transition: 0.4s;
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
.hakkimizda:hover{
background: white;
color: black;
border-radius: 22px;
}
.kimiz{
width: 285px;
height: 45px;
cursor: pointer;
transition: 0.4s;
font-family: 'Courier New', Courier, monospace;
margin: 15px;
font-weight: bold;
}
.kimiz:hover{
background: white;
color: black;
border-radius: 22px;
}
.iletisim {
width: 220px;
height: 45px;
cursor: pointer;
transition: 0.4s;
margin: 15px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
.iletisim:hover{
background: white;
color: black;
border-radius: 22px;
}
.sosyal {
width: 270px;
height: 45px;
cursor: pointer;
transition: 0.4s;
margin: 15px;
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
.sosyal:hover{
background: white;
color: black;
border-radius: 22px;
}
.Anasayfa{
width: 270px;
height: 45px;
cursor: pointer;
transition: 0.4s;
margin: 15px;
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
background: white;
color: black;
border-radius: 22px;
}
https://www.w3schools.com/howto/howto_js_topnav_responsive.asp
Şöyle bir örnek var işine yarayabilir.