I would like to have the textarea fields in my form appear the same as the text input fields, cross-browser. And I don't want to be forcing a custom style - I would like to just use whatever the standard style is within the user's browser.
So I know I could use
textarea {
border-style: inset;
border-width: 2px;
}
and then they would match in Chrom[e,ium], but then they don't match on Firefox/Iceweasel, for example.
So is there a straightforward way to say to the browser "please render textarea
elements with whatever border you are using for input[type="text"]
"?