Guest User

Untitled

a guest
Jun 22nd, 2010
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset=utf-8 />
  5. <title>JS Bin</title>
  6. <style>
  7. #where a{
  8.         color:#8E63B7;
  9.         text-decoration: none;
  10.         font-size:13px;
  11. }
  12. #where a:visited{color:#8E63B7; text-decoration: none; }
  13. #where a:hover{color:#8E63B7; text-decoration: underline; }
  14. #where a:active{
  15.         color:#8E63B7;
  16.         text-decoration: none;
  17. }
  18.  
  19. #where .wherehightlight {
  20.         color:#eb0000;
  21.         text-decoration: none;
  22.         font-size:24px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27.   <div id="where">
  28.   <a class="wherehightlight" href="#">台北</a>
  29.   <a href="#">桃園</a>
  30.   <a href="#">新竹</a>
  31.   <a href="#">台中</a>
  32.   <a href="#">高雄</a>
  33.   </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment