कैसे बनाएं: लेबल

CSS से लेबल शैली कैसे सेट करें सीखें。

सफलता सूचना चेतावनी खतरा अन्य

स्वयं प्रयोग करें

लेबल शैली कैसे सेट करें

पहला कदम - 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>

दूसरा कदम - CSS जोड़ें:

.label {
  color: white;
  padding: 8px;
}
.success {background-color: #04AA6D;} /* हरा */
.info {background-color: #2196F3;} /* नीला */
.warning {background-color: #ff9800;} /* नारंगी */
.danger {background-color: #f44336;} /* लाल */
.other {background-color: #e7e7e7; color: black;} /* ग्रे */

स्वयं प्रयोग करें