Tip of the day

I have noticed that a lot of developers don’t know this, but you don’t have to set each form’s border to empty border. Instead you can just set it in the stylesheet:

form {
border-style: solid;
border-width: 0;
}

Important: You have to set them both, the border style and width.

Excellent tip Sanneke! Thank you.

Excellent Sanneke!

Thanks!