Google News
logo
Material Design - Interview Questions
What Is Chip In Materialize CSS? With Examples
Materialize CSS Chips can be used to represent small blocks of information. They are most commonly used either for contacts or for tags.
 
Contacts : Are you create a contact chip just add an img inside.
 
<div class="chip">
    <img src="https://www.freetimelearning.com/images/free-time-learn-icon.png" alt="Contact Person">
    F T L
</div>
 
Tags : Are you create a tag chip just add a close icon inside with the close class.
 
<div class="chip red white-text">
    Material Design
    <i class="close material-icons">close</i>
</div>
Advertisement