fieldset border: 1px solid royalblue; : fieldset « Form « HTML / CSS






fieldset border: 1px solid royalblue;

  
<!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' xml:lang='en'>
    <head>
        <title>Attribute Selectors</title>
<style type='text/css'>
* {
    font-size: 12px;
}

fieldset {
    border: 1px solid royalblue;
}
legend, label {
    color: royalblue;
}
input[type='text'] {
    background: blue;
    color: white;
    border: 3px solid royalblue;
}
</style>


    </head>
    <body>
        <form method='post' action='Example_3-3.html'>
            <fieldset>
                <legend>Feedback Form</legend>
                <table>
                    <tbody>
                        <tr>
                            <td><label for='first-name'>First Name:</label></td>
                            <td><input type='text' name='first_name' id='first-name' value='Richard' size='25' /></td>
                        </tr>
                    </tbody>
                </table>
            </fieldset>
        </form>
    </body>
</html>

   
    
  








Related examples in the same category

1.'fieldset' groups 'form' elements by drawing a rectangle
2.Fieldset and Legend Example
3.Form field set with legend
4.Style for form fieldset
5.Use fieldset to create a set of form controls
6.Fieldsets and labels
7.Set border for fieldset
8.borderless fieldsets
9.Set fieldset border to dashed style
10.Organizing Elements With fieldset and legend Elements
11.noframes for frameset
12.utf-8 charset page
13.nested fieldset background-color: #efefef;
14.fieldset padding: 1em;
15.fieldset margin: 2em 0;
16.fieldset border: 1px solid #ccc;
17.fieldset background-color: #dfdfdf;
18.fieldset margin-bottom: 1em;
19.fieldset border: 1px solid #888; border-right: 1px solid #666; border-bottom: 1px solid #666;
20.fieldset border: 3px solid rgb(234, 234, 234);
21.fieldset background: rgb(244, 244, 244);
22.Fieldset and Legend
23.Fieldset Background
24.Fieldset Alternating
25.fieldset font-size:12px; padding:10px; width:250px;text-align:right;
26.fieldset font-size:12px; padding:10px; width:250px; line-height:1.8;
27.Using legend for fieldset
28.>Organizing Elements With fieldset and legend Elements
29.The fieldset element
30.Removing the border from fieldsets
31.Nested Fieldset Example
32.Element Subgroups