I have a setup where I am using two DIVs, one positioned below the other. The top DIV contains a Multiline Label that dynamically generates data.
However, when the data in the label exceeds a certain length, it does not create space and instead overlaps with the lower DIV.
Below is the CSS for the Div:
white-space: inherit;
And here is the CSS for the Label:
float: left;
width: 30%;
overflow: auto;
Any suggestions on how to fix this issue?