Change the appearance of text boxes
4 answers
Firebug for CSS validation
Have you tried using Firebug tool for FireFox?
You can check the elements on websites and see what styles were used.
In case of entering a StackOverflow title, the following style is used:
input {
margin:5px 0pt;
padding:3px;
}
input, select, button {
border:1px solid #999999;
font-family:Trebuchet MS,Helvetica,sans-serif;
font-size:100%;
}
+1
a source to share