I have the following basic setup:
I wanna put some HTML between the two span elements that will be in the center of both of them. But I've tried both div and span, align:center;, and I'm not sure how to do this short of using display:table; and re-organizing the my current setup.
Anyone have any ideas?
Code:
<div> <span style="float:left;"> <span>Items</span> <span>Items</span> <span>Items</span> </span> <span style="float:right;"> <span>Items</span> <span>Items</span> </span> </div>
Anyone have any ideas?
Comment