选择多个文本框

时间:2012-07-31 22:52:28

标签: class textbox height width selector

我想知道是否有办法改变两个文本框的高度和宽度。我试过了:

.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>

谢谢!

1 个答案:

答案 0 :(得分:1)

.info input {width:200px;height:100px}