You could use a pseudo-element to insert the :
and keep the space of those along the text:
<div class="col-xs-6 doublep"><span>I am a noob</span></div>
.doublep {
font-size: 0;
white-space: nowrap;
}
.doublep:before {
width: 15px;
text-align: Center;
font-size: 14px;
content: ":";
display: inline-block;
vertical-align: top;
}
.doublep span {
white-space: normal;
font-size: 14px;
display: inline-block;
vertical-align: top;
}
Check this BootplyDemo
solved How to put a space in front of a next line [closed]