Để thêm đường viền xung quanh thanh điều hướng, hãy đặt đường viền thành
ul { border: 2px solid blue; }
Ví dụ
Bạn có thể thử chạy mã sau để đặt đường viền
<!DOCTYPE html> <html> <head> <style> ul { list-style-type: none; margin: 0; padding: 0; width: 200px; border: 2px solid blue; } 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>