Define class for input button control : button « Form « HTML / CSS






Define class for input button control

   
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">


.save {
 margin-top: 1em;
 width: 5em;
}



</style>
</head>

<body>
    <form method="get" name="copresentations">
   <table cellspacing="0">
    <caption>
     Summary of Financial Data
    </caption>
    <tr>
     <th scope="col">Fiscal Year </th>
     <th scope="col">Worksite<br />
      Presentations </th>
     <th scope="col">Passing Grades </th>
     <th scope="col">Number of Presentators </th>
    </tr>
    <tr>
     <th scope="row">2003</th>
     <td><input type="text" name="w2003" /></td>
     <td><input type="text" name="p2003" /></td>
     <td><input type="text" name="n2003" /></td>
    </tr>
    <tr>
     <th scope="row">2004</th>
     <td><input type="text" name="w2004" /></td>
     <td><input type="text" name="p2004" /></td>
     <td><input type="text" name="n2004" /></td>
    </tr>
   </table>
   <input type="submit" class="save" value="Save" />
  </form>
</body>

</html>

   
    
  








Related examples in the same category

1.'button' Example
2.Form button with label
3.Buttons using the button element
4.input types "submit" and "reset" insert buttons for submitting and clearing the form's contents
5.Set submit button style for input
6.Style for reset button
7.Style for button submit
8.Hide submit button
9.Set style for submit button: border, background color, padding, margin and width
10.Set style for submit hover: text decoration
11.Set margin and width for submit button
12.Set text-transform: uppercase for button
13.Change form button style
14.button font: bold 12px Arial, Sans-serif;
15.button height: 24px;
16.button color: #333;
17.button background: #e7e6e6 url(MarketPlace-images/button.jpg) repeat-x;
18.button border: 1px solid #dadada;
19.button margin: 0;
20.button font: bold 1em Arial, Sans-serif;
21.button border: 1px solid #EFEFEF;
22.button padding: 2px 3px;
23.button background: #F1F0E4;
24.Button border-bottom: 1px solid #d8d8d8;
25.Button border-left: 4px solid #ccc;
26.Button border-right: 1px solid #d8d8d8;
27.Button border-top: 1px solid #d8d8d8;
28.Button color: #505050;
29.Button font-weight: 700;
30.Button margin: 0 0 15px;
31.Button padding: 7px 7px 7px 11px;
32.Button width: 120px;
33.Button background-image: url(images/button.gif);
34.Button background-position: top left;
35.Button background-repeat: no-repeat;
36.Button background-color: #FFFFFF;
37.Button width: 128px;
38.Button border: 0px;
39.Button margin: 7px 0 5px 7px;
40.Button padding: 3px 0 6px 0;
41.Button cursor: hand;
42.Button cursor: pointer;
43.Button color: #2C2C2C;
44.Button font-family: Tahoma;
45.Button font-size: 11px;
46.Button width: 103px;
47.Button padding: 0px;
48.Button background: none;
49.Button float: left;
50.Button margin: 10px 0 0 70px;
51.Button display: inline
52.button { line-height: 2; vertical-align: top; }