0

HTMLで次のコードを試しました。

しかし、テキスト ボックスと div の幅が同じサイズでない理由を理解できません。

これが私が試したことです。

<style>
.test
{
  border:1px solid red;width:100px;height:30px;padding:3px;
}
</style>

<div class="test">div</div>
<input type="text" value="text box" class="test" />

以下はfirefoxで入手しました。

ここに画像の説明を入力

4

1 に答える 1

0

FF、IE、CHROME で問題なく動作します。削除してから試すpadding:3px;

次のようにコーディングします。

 <style>
    .test
    {
        border:1px solid red;width:100px;height:30px;
    }
</style>

それがあなたを助けるかどうか教えてください。

于 2012-10-27T10:41:01.867 に答える