ਕਿਵੇਂ ਬਣਾਉਣਾ ਹੈ: ਟੈਗ

CSS ਨਾਲ ਟੈਗ ਸਟਾਈਲ ਕਿਵੇਂ ਵਰਤਣਾ ਹੈ ਸਿੱਖੋ。

ਸਫਲ ਸੂਚਨਾ ਚਿਤਾਵਨੀ ਖਤਰਨਾਕ ਹੋਰ

亲自试一试

ਟੈਗ ਸਟਾਈਲ ਕਿਵੇਂ ਸੈਟ ਕਰਨਾ ਹੈ

ਕਦਮ 1 - ਐੱਚਟੀਐੱਮਐੱਲ ਚੁੱਡਾਓ:

<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>

ਕਦਮ 2 - ਸਕਿਨ ਐੱਸਐੱਸ ਚੁੱਡਾਓ:

.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;} /* ਹਲਕਾ */

亲自试一试