Erstellen Sie eine horizontale Navigationsleiste mit Inline-Listenelementen. Setzen Sie das
Sie können versuchen, den folgenden Code auszuführen, um eine horizontale Navigationsleiste zu erstellen:
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>
Das obige ist der detaillierte Inhalt vonErstellen Sie eine horizontale Navigationsleiste mithilfe von Inline-Listenelementen in CSS. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!