I am struggling to align my text properly and looking for a solution similar to this example http://jsfiddle.net/xKSUH/. The issue I am facing is that my text is not centered and there seems to be an extra space on the second line...
Here is my HTML code:
<div class="row">
<div class="span12">
Hello <span data-bind="text: viewModel.firstName()"></span>,
We have analyzed <span data-bind="text: viewModel.user.nbAnalyzedMails()"></span>
emails, extracted <span data-bind="text: viewModel.user.newMessages()"></span>
new messages. Please check report in your dashboard ></span> <br>
</div>
</div>
And here is the CSS I'm using:
.row {text-align: center}