10_基础语法3.html 657 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. a{
  10. /* 文件修饰 none|underline|line-through*/
  11. text-decoration: line-through;
  12. }
  13. /* 去掉列表的. */
  14. li{
  15. list-style: none;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <!-- a标签 文本 -->
  21. <a href="#">111</a>
  22. <a href="#">111</a>
  23. <!-- 列表 -->
  24. <ul>
  25. <li>111</li>
  26. <li>111</li>
  27. </ul>
  28. </body>
  29. </html>