1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- a{
- /* 文件修饰 none|underline|line-through*/
- text-decoration: line-through;
- }
- /* 去掉列表的. */
- li{
- list-style: none;
- }
- </style>
- </head>
- <body>
- <!-- a标签 文本 -->
- <a href="#">111</a>
- <a href="#">111</a>
- <!-- 列表 -->
- <ul>
- <li>111</li>
- <li>111</li>
- </ul>
-
- </body>
- </html>
|