> Perhaps something with the flex-box model might help you?
> for example: http://help.dottoro.com/lckcfgbc.php
> there are many more examples floating around.

Thanks, this seems to be the most elegant solution. The only caveat is
that the children must be either block-level elements or have display
set to block in CSS.

<div class="text">
 <div>A</div>
 <div>B</div>
 <div>C</div>
</div>

.text {
  display: -webkit-box;
}
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to