Menu
Components & UI

CSS Forms

Styling inputs, buttons, and focus states.

1Input Styling

Make form fields look good.

Example Code
input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

Finished reading?

Mark this topic as complete to track progress.