← Back to Archive

Native CSS Nesting is Finally Here

Say goodbye to SASS. CSS nesting is now supported in all major browsers.

Native CSS Nesting is Finally Here

Native CSS Nesting is Finally Here

CSS nesting allows you to write cleaner and more maintainable styles directly in your CSS files.

Example

.card {
  padding: 1rem;
  & .title {
    font-weight: bold;
  }
}