How can I put the input type = send to a new line after the text area element?
without using a br or div tag, ideally I like to do this with css.
<textarea></textarea><input type="submit" class="submitbutton"> .submitbutton{ display:block; }
You can display it as a block level element using display:block . With CSS 2, you can use this rule:
display:block
input[type=submit] { display: block }