My structure is pretty straightforward:
<div></div><span></span><span></span>
However, I'm looking to have them all appear on a single line. Currently, they are rendering like this:
<div />
<span /><span />
It's essential for the first element to be a div in my case; it serves as a bar in a bar chart (with rounded corners, width controlled by jQuery, no content, and a solid color inside). The next span represents the value of the bar, while the last span shows what the value corresponds to.
So ideally, I'd like to see:
[____________] 25% ObjectA
[________________________] 50% ObjectB
[______] 12.5% ObjectC
[______] 12.5% ObjectD
Instead of:
[____________]
25% ObjectA
[________________________]
50% ObjectB
[______]
12.5% ObjectC
[______]
12.5% ObjectD