My goal is to make the textarea fields in my form have the same appearance as the text input fields, regardless of the browser being used. I am interested in achieving this without imposing a customized style, but instead by leveraging the standard style within the user's browser.
One approach I considered was:
textarea {
border-style: inset;
border-width: 2px;
}
While this method achieves consistency across Chrome, it results in discrepancies on browsers like Firefox/Iceweasel.
Is there a simple way to instruct the browser to render textarea
elements using the same border style as input[type="text"]
fields?