CSS How to place a submit button on a new line?

css, input, newline, submit

Solution

<textarea></textarea><input type="submit" class="submitbutton">


.submitbutton{
  display:block;
}

Problem

How can I place an input type=submit on a new line following a text area element? without using a br tag or a div, ideally I like to do it using css.

Original source