We have a paragraph of text aligned vertically in an HTML output:
Test 1
Test 2
Test 3
Test 4
However, we now want to align these texts horizontally
using some CSS
:
Test 1 Test 2 Test 3 Test 4
Is there a CSS solution available for achieving this task?
Update:
<div class="horizontal">
<div>Test 1</div>
<div>Test 2</div>
<div>Test 3</div>
<div>Test 4</div>
</div>