Build a horizontal navigation bar using inline list items. Set
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!