在此示例中: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>