Hey I'm making a form:
Without the <p> tags around the textarea and the input so that the html would not validate?
Still this seems a little crazy, not to mention inheriting CSS from <p> with no need for classes.
Andy
HTML:
<form method="post" enctype="text/plain" action="">
<p><textarea class="message" name="contact" cols="60" rows="11">
</textarea></p>
<p><input class="submit" type="submit" value="Send"></input></p>
</form>
Without the <p> tags around the textarea and the input so that the html would not validate?
Still this seems a little crazy, not to mention inheriting CSS from <p> with no need for classes.
Andy