When I use the code below #thing get a width of 0.
#content {
width: == 800;
#thing {
width: == ^[width];
}
}
But when I reference #content directly #thing gets a width of 800 as expected.
#content {
width: == 800;
#thing {
width: == ($ #content)[width];
}
}
What am I missing? Why doesn't the first code work?
When I use the code below
#thingget a width of 0.But when I reference
#contentdirectly#thinggets a width of 800 as expected.What am I missing? Why doesn't the first code work?