-1

これが私のコードです。テキストフィールドを選択しようとすると、ページにテキストを入力できません。

    <form method=post action=/form-energy.php enctype='multipart/form-data'>
       <label for=name>Name:</label> <input name=name id=name type=text><br>
       <label for=tel>Tel:</label> <input name=tel id=tel type=tel><br>
       <label for=email>Email:</label> <input name=email id=email type=text><br>
       <label for=architect>Architect details:</label> <textarea name=architect id=architect rows=10></textarea><br>
       <p class=drawings>If you have any drawings to submit, please do so below (max file size 10mb):</p>
       <label for=drawings>Drawings:</label> <input type=file name=drawings id=drawings><br><br>
       <input type=submit value="Get in touch">
  </form>
4

1 に答える 1

2

問題は CSS にあります。z-index-1 に設定したのでdiv#content、本体の下にあり、何もクリックできません。ただし、 を使用Tabしてフォーム要素にアクセスすることはできます。

于 2013-07-23T13:58:11.520 に答える