After making adjustments to the line height, the closing x
mark on the right now aligns closer to the bottom of the alert message box. I am currently utilizing Bootstrap version 5.0.1. Is there a way for me to vertically center the x
mark? Thank you.
CSS:
.alert {
margin-bottom: 1px;
height: 45px;
line-height: 45px;
padding: 0px 15px;
font-size: 15px;
}
HTML:
<div class="alert alert-success alert-dismissible fade show" role="alert">
Success! Your application was submitted!
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
Result: