HTML/CSS - 27

HTML/CSS - 27: CSS Container Queries & Modern Selectors

Learn the latest CSS features like Container Queries and powerful modern selectors (:has, :is, :where, etc.).

✦ HTML Editor
▶ Live Output
👀 Show Solution
.card {
  container-type: inline-size;
}

@container (min-width: 300px) {
  .card {
    padding: 40px;
  }
}