12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!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>
- /* 去掉列表样式 */
- ul{
- list-style: none;
- }
- a{
- /* 文本装饰 underline下划线|none无|line-through中划线 */
- text-decoration: none;
- /* 鼠标 形状 */
- /* cursor: pointer; */
- color:red;
- }
- span{
- cursor: pointer;
- }
-
- </style>
- </head>
- <body>
- <!-- 背景 字体 文本 -->
- <ul>
- <li>111</li>
- <li>222</li>
- <li>333</li>
- </ul>
- <a href="#">Baidu</a>
- <span>你好呀</span>
-
- </body>
- </html>
|