-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你的div#content到-1,所以它在身体下面,没有什么可以点击的。但是,您可以使用Tab它来访问您的表单元素。

于 2013-07-23T13:58:11.520 回答