CSS 中的內聯列表項是什麼
使用內聯列表項構建水平導航欄。將<li>元素設定為內聯。
示例
您可以嘗試執行以下程式碼來建立水平導航欄
<!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>
廣告