Is it possible to use nested CSS statements? Rather than repeating classes as shown below:
.hello .world1 {}
.hello .world2 {}
Could we potentially do something along the lines of this instead:
.hello {
.world1 {}
.world2 {}
}
Is a similar technique feasible in CSS/CSS3?