suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Wie zentriere ich die Navigation auf der Seite mithilfe der UL-Liste?

<p>如何在页面上水平和垂直居中ul列表中的导航?</p> <p>以下是HTML und CSS-代码</p> <p><br /></p> <pre class="brush:css;toolbar:false;">.nav{ Breite: 100 %; Höhe: 100 %; Position: fest; Hintergrundfarbe: weiß; Überlauf versteckt; } .menu a{ Polsterung: 30px; Farbe: Schwarz; Textausrichtung: Mitte; links: 0; Rand: 0 automatisch; Flex: keine; Anzeige: Flex; align-items: center; rechtfertigen-Inhalt: Mitte; }</pre> <pre class="brush:html;toolbar:false;"><nav class="nav"> <ul class="menu"> <li><a href="#">Google Store</a></li> <li><a href="#">Google-Suche</a> </li> <li><a href="#">Spotify</a></li> <li><a href="#">Spotify Blog</a></li> <li><a href="#">Squarespace</a></li> <li><a href="#">Andere Arbeiten</a></li> </ul> </nav></pre> <p><br /></p> <p>我尝试使用CSS的flex方法来对齐项目.</p>
P粉052686710P粉052686710474 Tage vor524

Antworte allen(1)Ich werde antworten

  • P粉642436282

    P粉6424362822023-08-14 00:40:06

    你必须将flexbox属性应用于包含项目的容器,而不是项目本身。

    .nav {
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: white;
        display: flex;
        align-items: center; 
        justify-content: center;  
    }
    
    .menu {
        list-style-type: none;
        padding: 0;
    }
    
    .menu a {
        padding: 30px;
        color: black;
        text-align: center;
        text-decoration: none;
    }
    <nav class="nav">
                <ul class="menu">
                    <li><a href="#">Google Store</a></li>
                    <li><a href="#">Google Search</a> </li>
                    <li><a href="#">Spotify</a></li>
                    <li><a href="#">Spotify Blog</a></li>
                    <li><a href="#">Squarespace</a></li>
                    <li><a href="#">Other work</a></li>
                </ul>
            </nav>

    这样可以使你的ul在.nav容器中水平和垂直居中。

    Antwort
    0
  • StornierenAntwort