• एक ऐसा स्पेक जो CSS styles के अंदर दूसरे styles को nested करने की सुविधा देता है

→ parent rule selector के आधार पर child rule selector का उपयोग

  • CSS की modularity और maintainability में बढ़ोतरी

  • direct nested declarations या rule-based @nest सपोर्ट

  • Nesting Selector '&'

table.colortable {

 & td {

  text-align:center;

  &.c { text-transform:uppercase }

  &:first-child, &:first-child + td { border:1px solid black }

 }

 & th {

  text-align:center;

  background:black;

  color:white;

 }

}

अभी कोई टिप्पणी नहीं है.

अभी कोई टिप्पणी नहीं है.