Skip to content

Commit

Permalink
Merge pull request #22 from node-girls/textarea-space
Browse files Browse the repository at this point in the history
Removes carriage return from textarea that causes weird spacing on input
  • Loading branch information
msmichellegar committed Jul 3, 2016
2 parents 42bdeb6 + 2a0ac6a commit 1f68823
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions step07.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ Open up the `index.html` file in your text editor. If you have a look, you shou
```html
<h3>Create a blog post</h3>
<form action="/create-post" method="POST">
<textarea name="blogpost" rows="10" cols="14">

</textarea>
<textarea name="blogpost" rows="10" cols="14"></textarea>
<button type="submit">Send</button>
</form>
```
Expand Down

0 comments on commit 1f68823

Please sign in to comment.