HTML CSS examples for CSS Form:input
Select input by type using CSS
<html> <head> <style> input[type="text"] { width:201px; border:2px solid Chartreuse; } </style> <!--from w w w . j a v a 2 s. com--> </head> <body> <input type="text" name="test" value="test" style="width: 50px;"> </body> </html>