medium
+15 XP
FRONTEND

Extend Directive

Use @extend to share styles between a base button and a primary button.
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>
  <button class="btn">Default</button><button class="btn btn--primary">Primary</button>
  <script src="/index.js"></script>
</body>
</html>