When a form is put inside a div, there's always extra space at the bottom of the form for some reason. How do we get rid of that space?
In the code snippets from stack overflow, it doesn't actually show the space, but anywhere else, it does. The code below is all there is.
div {
border: 1px solid blue;
}
form {
border: 1px solid red;
}
<div>
<form>
Form
</form>
</div>