In Flex there is a container component called HGroup that lays out it's contents horizontally. What would the equivalent to the following be in HTML:
<HGroup gap="10">
<button width="50"/>
<button width="10"/>
<button width="100"/>
</HGroup>
The features of the HGroup, for HTML developers, are that each item in the HGroup tag is positioned after the previous item. In the code above each button would be placed after the last. The gap property specifies how much space is between each item. The hgroup fits the width of all it's elements and does not wrap around to the next line. There is a verticalAlign property that aligns the elements top, middle or bottom.
I think a div or span tag with some sort of no wrap style the closest tag that mimics the HGroup behavior?