Member 13719344 Ответов: 1

Navbar сделайте его центральной страницей


привет --
пожалуйста, не могли бы вы помочь мне сделать веб-страницу navbar center
я имею в виду div для navbar, я использую этот код
ширина 960 px и маржа: авто; но не работает

<div class="navbar" id="myNavbar"> 
    <a class="nav-logo" href="#"><img src="images/icon.png" width="32" height="32" alt=""></a>
    <a class="nav-list" href="#news">News</a>
    <a class="nav-list" href="#contact">Contact</a>
    <a class="nav-list" href="#about">About</a>
    <a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
    <a class="nav-list" id="nav-list-right" href="#downloads">Downloads</a>
  </div>


.navbar { 
  overflow: hidden; 
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
}
.navbar a {
  float: left;
  display: block;
  color: #444;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
}
.navbar a:hover {
  color: #999999;    
}
.navbar .icon {
  display: none;
}
.nav-list {
    margin-top: 8px;
}
.nav-logo {
    margin-left: 10px;
    margin-top: 3px;
}
#nav-list-right {
     float: right;
    margin-right: 10px;
}


<script>
    function myFunction() {
        var x = document.getElementById("myNavbar");
        if (x.className === "navbar") {
            x.className += " responsive";
        } else {
            x.className = "navbar";
        }
    }
</script>


Что я уже пробовал:

Я использую этот код
ширина 960 px и маржа: авто; но не работает

1 Ответов

Рейтинг:
0

Member 13719344

я забыл добавить для мобильного телефона

/************************** Responsive Web Design NAVBAR **/

@media screen and (max-width: 600px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
  }
    #nav-list-right {
        float: left;
    }
    .navbar {
        background-color: #FAFAFA;
    }
}


@media screen and (max-width: 600px) {
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    bottom:0;

  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}