@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Document</title>
+ <style>
+ *{
+ margin: 0;
+ padding: 0;
+ }
+ ul{
+ list-style: none;
+ display: flex;
+ flex-wrap: wrap;
+ li{
+ width: 20%;
+ height: 100px;
+ background: red;
+ border: 1px solid springgreen;
+ box-sizing: border-box;
+
+ </style>
+</head>
+<body>
+ <ul>
+ <li></li>
+ </ul>
+</body>
+</html>