I’m using two DIV s one below the other. In the Top DIV I’m using a Multiline Label in which data is generated Dynamically.
When the Data in the Label is a bit larger then Space is not generated but the exceeded data merges with the lower DIV
Here is the Css for Div
white-space:inherit;
Here is the Css for Label
float: left;
width: 30%;
overflow:auto;
Can you help me?
Give the fist DIV class name
.containerand write css as –The
labelis merging intonext divbecause it hasfloat: leftproperty.overflow: hidden;will help you prevent this behavior.