CSS【2018.11.29】
阿新 • • 發佈:2018-12-01
<!DOCTYPE html> <html> <head> <meta charset="gbk"/> <title></title> <style type="text/css"> ul{ list-style-type:none; margin:0; padding:0; width:200px; background-color:#f1f1f1; } li a{ display:block; color:#000; padding:8px 16px; text-decoration:none; } li a.active{ background-color:black; color:white; } li a:hover:not(.active){ background-color:#555; color:red; } </style> </head> <body> <h2>垂直導航條</h2> <p>在點選了選項後,我們可以新增 "active" 類來標準哪個選項被選中。</p> <ul> <li><a class="active" 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>