Select input by type using CSS - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Select input by type using CSS

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials