|
发表于 2018-10-22 23:37:00
|
显示全部楼层
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>31</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style>
- ul {
- padding: 0;
- margin: 0;
- }
-
- li {
- list-style: none;
- padding: 15px;
- text-indent: 40px;
- float: left;
- box-sizing: border-box;
- /* width: 233px;
- margin-right: 33px; */
- margin-right: 4%;
- width: 22%;
- min-width: 99px;
- }
-
- li:first-child {
- background: #c0392b url('check.png') no-repeat 10px 50%;
- }
-
- li:nth-child(2) {
- background: #e74c3c url('shenshou.png') no-repeat 10px 50%;
- }
-
- li:nth-child(3) {
- background: #c0392b url('check.png') no-repeat 10px 50%;
- }
-
- li:last-child {
- background: #e74c3c url('shenshou.png') no-repeat 10px 50%;
- margin-right: 0;
- }
-
- li:hover {
- background-color: #9f3;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>小天才养殖场</li>
- <li>吹水阁</li>
- <li>Web开发</li>
- <li>Qt开发</li>
- </ul>
- </body>
- </html>
复制代码 |
|