Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt kiểu cho liên kết hiện tại trong Thanh điều hướng với CSS

Để đặt một kiểu thành liên kết hiện tại trong thanh điều hướng, hãy thêm kiểu vào .active. Bạn có thể thử chạy mã sau để tạo kiểu cho liên kết hiện tại:

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         ul {
            list-style-type: none;
            margin: 5;
            padding: 5;
         }
         li a {
            display: block;
            width: 70px;
            background-color: #F0E7E7;
         }
         .active {
            background-color: #4CAF50;
            color: white;
         }
      </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>