Güncel Sabit Alt Menü (Mobile Sticky Navbar)

Falcon

Yönetici
CSS:
<!DOCTYPE html>
<html lang="tr">
<head>
  <meta charset="UTF-8">
  <title>Alt Navigasyon</title>
  <style>
    body {
      margin: 0;
      padding-bottom: 60px;
      font-family: sans-serif;
    }

    .content {
      padding: 20px;
    }

    .bottom-nav {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #222;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
    }

    .bottom-nav a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    .bottom-nav a:hover {
      color: #00bcd4;
    }
  </style>
</head>
<body>
  <div class="content">
    <h1>İçerik Alanı</h1>
    <p>Sayfanın içeriği burada...</p>
  </div>

  <div class="bottom-nav">
    <a href="#">Anasayfa</a>
    <a href="#">Profil</a>
    <a href="#">Ayarlar</a>
  </div>
</body>
</html>
 
Geri
Üst