How would you get three span’s to sit side by side instead of going to the next line without using float in CSS? So I need all three of these to appear next to each other..or if there is another method without using float.
Thanks!
<span style="display:block; width:33%;">Test1</span>
<span style="display:block; width:33%;">Test2</span>
<span style="display:block; width:33%;">Test3</span>
display: inline-block;or their natural (default) display of inline.. though you can give the inline-block a width and height