NOTE: in this scenario, I am specifically focusing on the 'height' property, but I will be examining other css attributes as well.
I am working with media queries that define the height of an element.
Additionally, I have created an Angular directive to monitor changes in that height.
Despite the height changing when the window is manually resized and the watch function being triggered (using .digest()), the .css('height') method returns empty.
return element.css("height") ; // --> nothing
To see more details, please refer to my Plunker example.