medium
+20 XP
FRONTEND

CSS Grid Layout

Create a 3-column grid layout where items span different columns.
You're exploring as a guest. Create a free account to save progress and submit solutions.
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <link rel="stylesheet" href="/styles.css" />
  
</head>
<body>
  <div class="grid"><div class="item">1</div><div class="item">2</div><div class="item">3</div><div class="item">4</div></div>
  <script src="/index.js"></script>
</body>
</html>