|
发表于 2020-9-18 15:29:52
|
显示全部楼层
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- <style type="text/css">
- li {
- color: white;
- list-style: none;
- padding: 10px;
- margin: 5px;
- text-align: center;
- background: red url(https://xxx.ilovefishc.com/forum/201701/23/114912gfpp4bc9by93tw4f.png) no-repeat 3px 50%;
- }
- li:nth-child(2) {
- background: deeppink url(https://xxx.ilovefishc.com/forum/201701/25/095359s33kjk8ihr0r5dk5.png) no-repeat 3px 50%;
- }
- li:last-child {
- background: yellowgreen url(https://xxx.ilovefishc.com/forum/201701/25/095359s33kjk8ihr0r5dk5.png) no-repeat 3px 50%;
- }
- li:hover {
- background-color: whitesmoke;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>小天才养殖场</li>
- <li>吹水阁</li>
- <li>Web开发</li>
- <li>Qt开发</li>
- </ul>
- </body>
- </html>
复制代码 |
|