Is there a simple way of getting a HTML textarea and an input type=\"text\" to render with (approximately) equal width (in pixels), that works in different browsers?
A C
input[type="text"] { width: 60%; } input[type="email"] { width: 60%; } textarea { width: 60%; } textarea { height: 40%; }