Я хочу иметь <a></a>
, в котором текст центрируется вертикально, как кнопки. Может кто-нибудь объяснить, почему <button></button>
по центру вертикально, а не ссылка?
Высота строки не работает (см. Ниже)
.btn {
height: 70px;
}
.line-height-example {
line-height: 30px;
min-height: 45px;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"/>
<a href="#" class="btn btn-primary">Not centered</a>
<button class="btn btn-primary">Centered</button>
<br><br>
<div class="row">
<div class="col-3">
<a href="#" class="btn btn-primary line-height-example">Line height</a>
</div>
<div class="col-3">
<a href="#" class="btn btn-primary line-height-example">Line height example</a>
</div>
</div>