get width of parent element react code example
Example 1: javascript get element width
var width = document.getElementById('myID').offsetWidth;//includes margin,border,padding
var height = document.getElementById('myID'). offsetHeight;//includes margin,border,padding
Example 2: how to get width of inline elements js
<style>
span {
display: inline-block ;
}
</style>