HTML/CSS - 16

HTML/CSS - 16: Advanced CSS Techniques

Take your CSS to the next level with custom properties, pseudo-classes, and modern selectors.

✦ HTML Editor
▶ Live Output
👀 Show Solution
:root {
  --primary: #00ff9d;
  --bg: #111;
}

.card {
  background: var(--bg);
  border: 2px solid var(--primary);
  transition: all 0.4s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--primary);
}