Fancy Form Design Using CSS Article

    Cameron Adams
    Share

    Using the CSS

    To create each of these different types of form layouts, we’ll use identical markup, but with different CSS rules.

    In our example, the HTML looks like this:

    <form action="example.php">   
    <fieldset>   
    <legend>Contact Details</legend>   
    <ol>   
    <li>   
    <label for="name">Name:</label>   
    <input id="name" name="name" class="text" type="text" />   
    </li>   
    <li>   
    <label for="email">Email address:</label>   
    <input id="email" name="email" class="text" type="text" />   
    </li>   
    <li>   
    <label for="phone">Telephone:</label>   
    <input id="phone" name="phone" class="text" type="text" />   
    </li>   
    </ol>   
    </fieldset>   
    <fieldset>   
    <legend>Delivery Address</legend>   
    <ol>   
    <li>   
    <label for="address1">Address 1:</label>   
    <input id="address1" name="address1" class="text"   
    type="text" />   
    </li>   
    <li>   
    <label for="address2">Address 2:</label>   
    <input id="address2" name="address2" class="text"   
    type="text" />   
    </li>   
    <li>   
    <label for="suburb">Suburb/Town:</label>   
    <input id="suburb" name="suburb" class="text"   
    type="text" />   
    </li>   
    <li>   
    <label for="postcode">Postcode:</label>   
    <input id="postcode" name="postcode"   
    class="text textSmall" type="text" />   
    </li>  
       
    <li>   
    <label for="country">Country:</label>   
    <input id="country" name="country" class="text"   
    type="text" />   
    </li>   
    </ol>   
    </fieldset>   
    <fieldset class="submit">   
    <input class="submit" type="submit"   
    value="Begin download" />   
    </fieldset>  
    </form>

    This HTML uses exactly the same fieldset-legend-label structure that we saw earlier in this chapter. However, you should see one glaring addition: inside the fieldset elements is an ordered list whose list items wrap around each of the form element/label pairs that we’re using.

    The reason for this addition? We need some extra markup in order to allow for all of the styling that we’ll do to our forms in this chapter. There are just not enough styling hooks in the standard fieldset-label structure to allow us to provide robust borders, background colors, and column alignment.

    There are a number of superfluous elements that we could add to the form that would grant us the extra styling hooks. We could move the form elements inside their label elements and wrap the label text in a span, or wrap a div around each form element/label pair. However, none of those choices would really contribute anything to the markup other than its presence.

    The beauty of using an ordered list is that it adds an extra level of semantics to the structure of the form, and also makes the form display quite well in the absence of styles (say, on legacy browsers such as Netscape 4, or even simple mobile devices).

    With no CSS applied and without the ordered lists, the rendered markup would appear as in Figure 6.

    unstyled-no-lists
    Figure 6: Unstyled form without any superfluous markup (See larger image in new window.)

    Figure 7 shows how the unstyled form looks when we include the ordered lists.

    unstyled-lists
    Figure 7: Unstyled form that includes an ordered list inside each fieldset
    (See larger image in new window.)

    I’m sure you’ll agree that the version of the form that includes ordered lists is much easier to follow, and hence fill out.

    Using Lists in Forms If you’re vehemently opposed to the inclusion of an ordered list inside your form.markup, you can easily substitute it for some other wrapper element; all you need is one extra container around each form element/label pair in order to style your forms any way you want.

    Two other HTML oddities that you might have picked up on:

    • Each form input has a class that replicates its type attribute, for example class="text" type="text". If you need to style a form element, this is a handy way of accessing it, given that Internet Explorer 6 and earlier don’t support CSS attribute selectors (although Internet Explorer 7 does, so you mightn’t need to include these extra classes in the near future).
    • The form submit button is contained inside its own fieldset with class="submit." You’ll frequently have multiple actions at the end of a form, such as "submit" and "cancel." In such instances, it’s quite handy to be able to group these actions, and a fieldset does this perfectly. If any styles are applied to normal fieldset elements, you’ll most often want to have a different style for the fieldset surrounding these actions, so the class is necessary to distinguish our actions fieldset. The fieldset and the input inside it both have the same class name because the term "submit" makes sense for both of them, but it’s easy to distinguish them in the CSS by preceding the class selector with an element selector, as we’ll see below.

    Applying General Form Styling

    There are a number of styles which we’ll apply to our forms, irrespective of which layout we choose. These styles revolve mainly around the inclusion of whitespace to help separate form elements and fieldset elements:

    fieldset {   
    margin: 1.5em 0 0 0;   
    padding: 0;  
    }  
    legend {   
    margin-left: 1em;   
    color: #000000;   
    font-weight: bold;  
    }  
    fieldset ol {   
    padding: 1em 1em 0 1em;   
    list-style: none;  
    }  
    fieldset li {   
    padding-bottom: 1em;  
    }  
    fieldset.submit {   
    border-style: none;  
    }

    The margin on the fieldset helps to separate each fieldset group from the others. All internal padding is removed from the fieldset now, because later on it’ll cause problems when we begin floating elements and giving them a width. Since padding isn’t included in the width, it can break the dimensions of your form if you have a width of 100% and some padding. Removing padding also helps to sort out inconsistencies between browsers as to the default internal spacing on the fieldset.

    To help define a visual hierarchy that clearly shows each label inside the fieldset grouped under the legend, we give our legend elements a of bold. We also have to replace the spacing that was removed from the padding on the fieldset, so we give the legend a margin-left of 1em.

    In order to turn off the natural numbering that would appear for the ordered list, we set list-style to none on the ol, and thus remove any of the bullet formatting that normally exists in such a list. Then, to recreate the internal spacing which we removed from the fieldset, we give the ordered list some padding. No padding is put on the bottom of the list, because this will be taken up by the padding of the last list item.

    To separate each form element/label pair from each other pair, we give the containing list item a padding-bottom of 1em.

    Finally, to remove the appearance of the submit button as a form element group, we need to take the borders off its surrounding fieldset. This step is achieved by targeting it using the fieldset.submit selector and setting the border-style to none.

    After applying all of this markup and adding some general page layout styles, we end up with Figure 8 — a form that’s beginning to take shape, but is still a bit messy.

    messy
    Figure 8: Form with general styling applied, but no layout styles

    Now we can go ahead and add in some layout styles!

    Go to page: 1 | 2 | 3 | 4 | 5 | 6 | 7