How to create: Labels

Learn how to use CSS to set label styles.

Success Info Warning Danger Other

Try It Yourself

How to set label styles

Step 1 - Add HTML:

<span class="label success">Success</span>
<span class="label info">Info</span>
<span class="label warning">Warning</span>
<span class="label danger">Danger</span>
<span class="label other">Other</span>

Step 2 - Add CSS:

.label {
  color: white;
  padding: 8px;
}
.success {background-color: #04AA6D;} /* green */
.info {background-color: #2196F3;} /* blue */
.warning {background-color: #ff9800;} /* orange */
.danger {background-color: #f44336;} /* red */
.other {background-color: #e7e7e7; color: black;} /* grey */

Try It Yourself