使用CSS将导航栏中的链接居中

要使导航栏中的链接居中,您需要在“ <li>”中添加“ text-align:center”

示例

<!DOCTYPE html>

<html>

   <head>

      <style>

         ul {

            list-style-type: none;

            margin: 0;

            padding: 0;

            width: 200px;

         }

         li a {

            display: block;

            background-color: #F0E7E7;

         }

         .active {

            background-color: #4CAF50;

            color: white;

         }

         li {

            text-align: center;

            border-bottom: 1px solid #555;

         }

      </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>

以上是 使用CSS将导航栏中的链接居中 的全部内容, 来源链接: utcz.com/z/326818.html

回到顶部