1

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

图片

4

1 回答 1

2

添加text-align:right;<p>元素。

于 2012-12-05T15:28:10.280 回答