Is it possible to present input type items in a random order with CSS?
For example, given the following html..
<input type="radio" value="1" /> One
<input type="radio" value="2" /> Two
<input type="radio" value="3" /> Three
Is it possible to render them
Two
Three
One
or
Three
One
Two
and so on..
Thanks.
