I have a div, its style is style={{ width: '100%', height: '100%', overflow: "hidden" }}, but in f12 the div is 100% by 0
the div jsx component:
return (
    <div style={{ width: '100%', height: '100%', overflow: "hidden" }}>
        {/* some code */}
    </div>
)
App.css style:
body, html {
    text-align: center;
}
The elements that wrap this div don't have any styles.
 
    