I am creating a chat application and in that I am dynamically populating the messages in a div
$('#conversation').append('<div class="message"><span><b>'+username+': </b>' + data + '</span></div>');
But the problem is if the message is too long, it is not going on the next line. I tried with
white-space:normal;
but no luck yet. Here is the dummy Fiddle