代码
提交代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <!-- 在这里用link标签引入中文渐变色 --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/chinese-gradient"> <style> /* 清除默认样式 */ * { padding: 0; margin: 0; } /* 全屏显示 */ html, body, ul { height: 100% } /* 父元素 */ ul { /* 清除默认样式 */ list-style: none } /* 子元素 */ li { /* 绝对定位 */ position: absolute; /* 宽高都是33% */ width: 33%; height: 33%; /* 红色渐变 */ background: var(--火红) } /* 第一个子元素 */ li:first-child { top: 0; left: 0; } /* 第二个子元素 */ li:nth-child(2) { top: 0; left: 33.33%; } /* 第三个子元素 */ li:nth-child(3) { top: 0; left: 66.66%; } /* 第四个子元素 */ li:nth-child(4) { top: 33.33%; left: 0; } /* 第五个子元素 */ li:nth-child(5) { top: 33.33%; left: 33.33%; } /* 第六个子元素 */ li:nth-child(6) { top: 33.33%; left: 66.66%; } /* 第七个子元素 */ li:nth-child(7) { top: 66.66%; left: 0; } /* 第八个子元素 */ li:nth-child(8) { top: 66.66%; left: 33.33%; } /* 第九个子元素 */ li:last-child { top: 66.66%; left: 66.66%; } </style> </head> <body> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </body> </html>
运行结果