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?