Here is a sample of HTML code with text lines breaking:
<pre>
one
two
three
four
five
six
</pre>
I am looking to display it in the browser like this (with two lines per row and space using tab character "\t"):
one two
three four
five six
Is there a CSS solution that can achieve this layout?