Home  >  Article  >  Web Front-end  >  Build a horizontal navigation bar using inline list items in CSS

Build a horizontal navigation bar using inline list items in CSS

PHPz
PHPzforward
2023-08-29 14:29:11556browse

使用 CSS 中的内联列表项构建水平导航栏

Build a horizontal navigation bar using inline list items. Set

  • elements inline.

    Example

    You can try running the following code to create a horizontal navigation bar:

    Live Demo

    <!DOCTYPE html>
    <html>
       <head>
          <style>
             ul {
                list-style-type: none;
                margin: 0;
                padding: 0;
             }
             .active {
                background-color: #4CAF50;
                color: white;
             }
             li {
                border-bottom: 1px solid #555;
                display: inline;
             }
          </style>
       </head>
       <body>
          <ul>
             <li><a href = "#home">Home</a></li>
             <li><a href = "#company" class="active">Company</a></li>
             <li><a href = "#product">Product</a></li>
             <li><a href = "#services">Services</a></li>
             <li><a href = "#contact">Contact</a></li>
          </ul>
       </body>
    </html>
  • The above is the detailed content of Build a horizontal navigation bar using inline list items in CSS. For more information, please follow other related articles on the PHP Chinese website!

    Statement:
    This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete