I'm a newbie in html and css. I'm trying to make text go next line even if the text is not overflowed in css. Now it gives from the page like,
However, I want to be like such as
Temperature : 13 Celsius
CO2: 345 ppm
Humidity: 13%
How can I do such a thing? I tried to find in google but couldn't find any solutions that I want.
Thanks in advance.
EDIT I actually used tooltip function like below
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
and then the text that I showed above is in div title
<div id="my id" class="draggable js-drag" data-toggle="tooltip" data-placement="top"
style="display: block; position: absolute; left: 894px; top: 413px;"
data-x="894" data-y="413"
data-original-title="Temperature : 13.0 °C CO2 : 345 ppm Humidity : 13.0 %"></div>

<p>tag for each linediv title. I want it to make those text go next line from that. How can I do that..?div title"? Can you also show that?