Skip to content

Commit 1f68823

Browse files
Merge pull request #22 from node-girls/textarea-space
Removes carriage return from textarea that causes weird spacing on input
2 parents 42bdeb6 + 2a0ac6a commit 1f68823

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

step07.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ Open up the `index.html` file in your text editor. If you have a look, you shou
2929
```html
3030
<h3>Create a blog post</h3>
3131
<form action="/create-post" method="POST">
32-
<textarea name="blogpost" rows="10" cols="14">
33-
34-
</textarea>
32+
<textarea name="blogpost" rows="10" cols="14"></textarea>
3533
<button type="submit">Send</button>
3634
</form>
3735
```

0 commit comments

Comments
 (0)