12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .container h1{
- text-align: center;
- border-bottom: 1px solid blue;
- padding-bottom: 20px;
- }
- .container .content{
- width: 400px;
- margin:0 auto;
- }
- .content ul li{
- list-style: none;
- width: 350px;
- background-color: #999;
- margin-bottom: 20px;
- height: 80px;
- color: #fff;
- font-size: 23px;
- line-height: 80px;
- padding-left: 20px;
- border-radius: 10px;
- }
- .content ul li:nth-child(2n){
- background-color: #555;
- }
- .content ul li:first-child{
- background-color: #307df7;
- }
- .content ul li:hover{
- background-color: #307df7;
- cursor: pointer;
- }
- .content ul li:last-child:hover::after{
- content: "这是最后一个列表项";
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>我的简单网页</h1>
- <div class="content">
- <p>以下是一些列表项:</p>
- <ul>
- <li>列表项 1</li>
- <li>列表项 2</li>
- <li>列表项 3</li>
- <li>列表项 4</li>
- <li>列表项 5</li>
- </ul>
- </div>
- </div>
- </body>
- </html>
|