## Introduction The Material Design Lite (MDL) **chip** component is a small, interactive element. Chips are commonly used for contacts, text, rules, icons, and photos. ## TO INCLUDE AN MDL CHIP COMPONENT:  1. Create a container element for the chip; typically `` and `
` are used, but any container element should work equally well. If you need interactivity, use a ` ``` ## CSS Classes | MDL Class | Effect | Remarks | |-----------|--------|---------| | `mdl-chip` | Defines element as an MDL chip container | Required on "outer" container | | `mdl-chip--contact` | Defines an MDL chip as a contact style chip | Optional, goes on "outer" container | | `mdl-chip__text` | Defines element as the chip's text | Required on "inner" text container | | `mdl-chip__action` | Defines element as the chip's action | Required on "inner" action container, if present | | `mdl-chip__contact` | Defines element as the chip's contact container | Required on "inner" contact container, if the `mdl-chip--contact` class is present on "outer" container |