Page 1 of 1

Tip of the day

PostPosted: Thu Mar 20, 2008 6:11 pm
by sanneke
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.

PostPosted: Thu Mar 20, 2008 8:26 pm
by Karel Broer
Excellent tip Sanneke! Thank you.

PostPosted: Fri Mar 21, 2008 10:41 am
by Erik Kramer
Excellent Sanneke!

Thanks!