この例では: http://jsfiddle.net/6L6ZLは、 WIDTHサイズを指定せず にラベルのテキストを右揃えにすることは可能ですか?
<html>
<head>
<style>
fieldset {
display: inline-block;
}
fieldset input{
float: right;
}
</style>
</head>
<body>
<form>
<fieldset>
<p><label>First Name</label><input type="text" /></p>
<p><label>Second Name</label><input type="text" /></p>
<p><label>Address</label><input type="text" /></p>
<p><label>Age</label><input type="text" /></p>
</fieldset>
</form>
</body>
</html>