I have a simple HTML form, thus:
<form>
<p>
<input type="text" name="text" />
</p>
<p class="buttonPara">
<input type="submit" name="submit" />
</p>
</form>
and a simple stylesheet, thus:
p.buttonPara
{
position: relative;
}
p.buttonPara input
{
position: absolute;
left: 50px;
}
The submit button fails to respond to the return key unless I remove the class from the
<p class="buttonPara">
Any ideas anyone?