<!DOCTYPE html> <html> <head> <title>#練習冊二</title> <style type="text/css"> ul{ list-style-type: none; margin: 0; padding: 0; width: 20%; background-color: #f1f1f1; border: 1px solid #555; /*添加邊框*/ } li{ text-align: center; border-bottom: 1px solid #555; } li:last-child{ border-bottom: none; /*去掉最後一個格子的重複*/ } li a.green{ background-color: #4CAF50; color: white; } li a{ display: block; color: #000; padding: 8px 16px; text-decoration: none; } li a:hover{ background-color: #555; color: white; } </style> </head> <body> <ul> <li><a class="green" href="#home">主頁</a></li> <li><a href="#news">新聞</a></li> <li><a href="#contact">聯繫</a></li> <li><a href="#about">關於</a></li> </ul> </body> </html>