I currently have a fieldset which must take 96% of my container. This fieldset must have his elements centered but also aligned, so for example all the labels must end at the same spot and all the inputs must begin at the same spot.This was fairly easy without the whole center problem with this code (JSFiddle):\[code\].formulaire{ margin: 1em auto; border-style: solid; border-width: 1px; border-color: #B0B0B0; padding: 1em;}.formulaire label{ float: left; width: 25%; text-align: right;}\[/code\]I've tried to put my fieldset inside a div with text-align center, however it simply centers everything and doesn't align anything.Any help would be greatly appreciatedThanks !