WDD 130: Web Fundamentals

CSS Form Styling

Overview

An HTML form is a user interface that needs styling in order to be usable and provide a positive user experience given the direct interaction. In this activity, CSS is added to the user poll form built in the last module.

Ugly form
Figure 1: The basic 'User Poll' form from the last module with no style.

Prepare

Activity Instructions

Using the 'User Poll' form from the last module, add CSS to style the form to bring it into conformance with best practices of form design, such as a single column layout and by providing appropriate padding and spacing.

Here is an example of what you will be producing:

User Poll Form with Style and Layout
Figure 2: The same User Poll form with styling added.

Setup

  1. In the week05 folder, create a styles folder if you have not already.
  2. Add a poll-form.css file in the styles folder.
  3. Open the poll-form.html file in the week05 folder.
  4. Add the reference link to the CSS file.
  5. Start the Live Server localhost browser service so that you can watch changes unfold as you add style.

Add Style

You are encouraged to design and style the form on your own versus being guided through these basic directives and given examples.
  1. Add a font(s) of your choice.
    Example This link element is added to the head of the HTML document. The example uses two fonts from Google Fonts: Merriweather and Roboto at the Regular 400 and Bold 700 styles.
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
  2. Style the universal selector * rule to set the default margin to zero, padding to zero, and the box-sizing to border-box.
    Example
          * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  3. Style the body rule to declare the font-family and whatever else you deem necessary
    Example
    body {
      font-family: Merriweather, Georgia, serif;
      font-size: 1.2em;
      color: #333;
      background: #fff;
    }
  4. Style the header and h1 as you see fit.
    Example
    header {
      margin: 0 auto;
      width: 650px;
    }
    
    h1 {
      margin: 1rem;
      font-size: 1.5em;
      color: navy;
      text-align: center;
    }
  5. Style the form with a width, a centered margin, padding, border, border-radius, background-color, and a display layout of grid.
    Example
    form {
      width: 650px;
      margin: 0 auto;
      padding: 1rem;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 0.5rem;
      background-color: #eee;
      display: grid;
    }
  6. Style each fieldset to be a grid and provide a grid-gap and whatever else you deem necessary.
    Example
    fieldset {
      display: grid;
      grid-gap: .5rem;
      margin: 1rem;
      border: 1px solid rgba(0, 0, 0, 0.2);
      padding: 1rem;
    }
  7. Style the fieldset legend.
    Example
    legend {
      padding: 0.5rem;
      color: navy;
      font-size: 1.3em;
    }
  8. Option: Style all the form elements (label, input, button, select, and textarea) with a different font family and in whatever other way you see fit that is different than the headings and legends.
    Example
    label, input, button, select, textarea {
      font-family: Roboto, Arial, sans-serif;
    }
  9. Style the label elements to text-align right and have a padding-right value.
    Example
    label {
      text-align: right;
      padding-right: 1rem;
    }
  10. Style the input, select, and textarea elements to have padding and a larger font-size. Note that this is critical in order to provide spacing inside of the form input elements.
    Example
    input, select, textarea {
      padding: 0.5rem;
      font-size: 1.1rem;
    }
  11. Style the checkbox element to be larger than the default size using width and height. Change the vertical-align to be at the bottom in order for it to fit in its space.
    The best practice CSS selector in this case is input[type="checkbox"]
    Example
    input[type="checkbox"] {
      width: 22px;
      height: 22px;
      vertical-align: bottom;
    }
  12. Style the button as you see fit along with the button:hover pseudo-class.
    Example
    button {
      margin: 1rem;
      background-color: navy;
      color: #fff;
      border: none;
      border-radius: .5rem;
      padding: .75rem;
      font-size: 1.2rem;
    }
    
    button:hover {
      background-color: darkgreen;
    }
  13. Style the footer
    Example
    footer {
      margin: 1rem auto 0;
      width: 650px;
      text-align: center;
      font-size: 0.8em;
      color: #777;
      border-top: 1px solid #ccc;
    {

Add HTML Divs

  1. Create div (divider) elements around each form label-input/select pair in your poll-form.html document.
    There should be four: input type text, input type email, select, and input type checkbox.
  2. Give each of those div elements a class attribute named form-item. Here is an example on the first item:
    <div class="form-item">
      <label for="fullname">Full Name:</label>
      <input type="text" id="fullname" name="fullanme">
    </div>
  3. Give the fullname and email div containers an additional class name of column2.
    <div class="form-item column2">
      <label for="fullname">Full Name:</label>
      <input type="text" id="fullname" name="fullanme">
    </div>
    <div class="form-item column2">
      <label for="useremail">Email:</label>
      <input type="email" id="useremail" name="useremail">
    </div>
    
  4. Give the select (browser options question) and checkbox (pet question) div containers an additional class name of column1.

CSS Style the Class Selectors

  1. Style the .form-item class selector to have a display of grid so that you can align the label and input/select elements. Also apply an align-items of centered for vertical alignment in a multi-column layout.
    Example
    .form-item {
      display: grid;
      align-items: center;
    }
  2. Style the .column1 class selector to have a grid-template-columns of 3fr 1fr so that the the first column, the label, takes three times the space as the second column. Also, add a margin as needed. You can adjust this value to get the desired spacing.
    Example
    .column1 {
      grid-template-columns: 3fr 1fr;
      margin: 0.5rem 0;
    }
  3. Style the .column2 class selector to have a grid-template-columns of 1fr 2fr so that the the first column, the label, takes half the space as the second column. Also, add a margin as needed. You can adjust this value to get the desired spacing.
    Example
    .column2 {
      grid-template-columns: 1fr 2fr;
    }

Test and Adjust

  1. Be sure to review your work in the browser using Live Server.
  2. Add additional CSS rules and declarations as needed to get consistent spacing and uniform alignment.

Submission

  1. Commit and push your work to your wdd130 GitHub Pages enabled repository.