I'm looking to define CSS like this. Is it possible?
#container-id-1
{
.the_content {
font-size: 20px;
text-align: left;
}
.the_footer {
text-align:center;
}
}
#container-id-2
{
.the_content {
font-size: 17px;
text-align: right;
}
.the_footer {
text-align:center;
}
}
I found this resource but since it came out there may be new developments:
#container-id-1 .the_content