代码
提交代码
<!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; /* 显示为网格布局 */ display: grid; /* 均分成三行三列 */ grid: repeat(3, 1fr) / repeat(3, 1fr); /* 给个合适的间距 */ gap: 20px; /* 调用动画 */ animation: clear-gap 5s ease-out infinite alternate } /* 子元素 */ li { /* 两像素的边框 */ border: 2px solid black } /* 定义动画 */ @keyframes clear-gap { to { gap: 0 } } /* 第一个子元素 */ li:first-child { border-right: none; border-bottom: none; } /* 第二个子元素 */ li:nth-child(2) { border-bottom: none; } /* 第三个子元素 */ li:nth-child(3) { border-left: none; border-bottom: none; } /* 第四个子元素 */ li:nth-child(4) { border-right: none; } /* 第六个子元素 */ li:nth-child(6) { border-left: none; } /* 第七个子元素 */ li:nth-child(7) { border-top: none; border-right: none; } /* 第八个子元素 */ li:nth-child(8) { border-top: none; } /* 第九个子元素 */ li:last-child { border-top: none; border-left: none; } </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>
运行结果