While attempting to troubleshoot this issue using Windows Chrome 59, I utilized devtools to examine the properties.
let element = document.getElementById("divId");
Upon checking the value of the element, I noticed that the object structure displayed:
>style:CSSStyleDeclaration
Further inspecting the style property revealed a value for flexDirection: "" (empty). Despite knowing that my CSS has defined flex-direction as column:
flex-direction: column;
Is it not feasible to access this set value from my program? It is crucial for me to observe this change from flex-direction: row in order to adjust my JavaScript code's resizing logic accordingly.