Du skulle kanske kunna använda relativ positionering? Här är ett exempel (med riktigt fula färger, hehe):
<div style="width: 100px; background-color: #996600;">
<input type="radio" id="test1" name="test" style="position:relative; float: left; width: 14px;" />
<label for="test1" style="display: block; position:relative; float: left; background-color: #993366; width: 78px;">Val 1</label><br />
<input type="radio" id="test2" name="test" style="position:relative; float: left; width: 14px; clear: left;" />
<label for="test2" style="display: block; position:relative; float: left; background-color: #CCCCCC; width: 78px;">Val nummer 2 som är lite längre</label><br />
<input type="radio" id="test3" name="test" style="position:relative; float: left; width: 14px; clear: left;" />
<label for="test3" style="display: block; position:relative; float: left; background-color: #99CC00; width: 78px;">Val 3</label><br />
<div style="clear: both;" />
</div>

