Style Name Description
portlet-form-input-field The style for controls that contain textual information.

Examples:

Tag HTML Code Display
<input type="text">

<form action="form_action.asp" method="get"> 
    <p>
        First Name: 
        <input class="portlet-form-input-field" 
               type="text" 
               name="fname" /> 
    </p>               
</form> 
                

First name:

<input type="password">

<form action="form_action.asp" method="get">
    <p>
      Password:
      <input class="portlet-form-input-field" 
             type="password" name="pswd" />  
    </p>
</form>
                

Password:

<input type="file">

<form action="form_action.asp" method="get">
    <p>
        Upload file: 
        <input class="portlet-form-input-field" 
               type="file" name="infile" />  
    </p>
</form>
                

Upload file:

<textarea>

<p>Please enter your comments below:</p> 
<textarea class="portlet-form-input-field" 
        rows="2" cols="20"> 
</textarea>
                

Please enter your comments below:

<select>

<p>Please choose a car model:</p> 
<select portlet-form-input-field> <option>Volvo</option> <option>Saab</option> <option>Mercedes</option> <option>Audi</option> </select>

Please choose a car model: