Have you tried this one?
<style>
.tooltip.show p {
text-align:left;
}
</style>
Note: .show is automatically added by bootstrap once the tooltip is visible.
Although officially documented (source), I do not think you should include HTML code in the tooltip title attribute. This I recommended:
$("p").tooltip({
html: true,
title: '<p>Text in tooltip</p>'
});
Also referring to paragraph by p is a bad idea, as you could have many of them in your document. Refer by an id instead:
<p id="myparagraph"> Hover over here </p>
$("#myparagraph")
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…