0

両方のテキスト ボックスの高さと幅を変更する方法があるかどうか疑問に思っていました。私は試した:

.class{width:200px;height:100px;}

しかし、それは効果がありません。とにかく、入力せずに両方を選択できますか:

#firstname, #lastname{width:200px; height:100px;}

コードは次のとおりです。

<div class="info">
<input type="text" id="firstname" >
</div>
<div class="info">
<input type="text" id="lastname" >
</div>

ありがとう!

4

1 に答える 1

1
.info input {width:200px;height:100px}
于 2012-07-31T22:54:55.813 に答える