easy
+5 XP
FRONTEND

SASS Nesting

Refactor CSS using SASS nesting for a card component with nested elements.
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="card"><h3 class="card__title">Title</h3><p class="card__text">Text</p></div>
  <script src="/index.js"></script>
</body>
</html>