My div
has a mix of styles applied to it.
<div class="alert alert-secondary login-alert" role="alert">Please contact the administrator to receive credentials!</div>
The styles alert
and alert-secondary
are default styles from bootstrap 4
, while login-alert
is a custom style with just one line of code.
.login-alert {
font-family: 'Kavivanar', cursive;
}
Is there a way to combine these styles into one? I only want to use this combined style in specific places, but may need to use the pure alert
or alert-secondary
styles elsewhere.