|
发表于 2018-10-22 23:19:34
|
显示全部楼层
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style type="text/css">
- ul {
- margin: 0;
- padding: 0;
- }
-
- li {
- background: #f33 url("check.png") no-repeat 3px 50%;
- color: #fff;
- list-style: none;
- padding: 15px;
- margin: 6px 0;
- text-indent: 35px;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>小天才养殖场</li>
- <li>吹水阁</li>
- <li>Web开发</li>
- </ul>
- </body>
- </html>
复制代码 |
|