I have a problem trying to make a webpage with bootstrap 4 and flex. I am using Bootstrap cards with certain width. I see that this works fine in Google Chrome and Opera but appears to not work in Firefox. Here is my code:
<div class="row auxAltura2">
<div class="col">
<div class="card">
<div class="card-header colorPlataforma">
Tags
</div>
<div id="moduloTags" class="card-body">
...
</div>
</div>
</div>
</div>
And now here is my css:
.auxAltura2{height:250px}
.card-header{
display: flex;
flex: 1 0 30px;
align-items: center;
font-size:17px;
}
Image card on firefox:
And this is image from card on Opera:
You can see the difference between the 2 browsers. Is a bug? Glad if you can help me. Thanks for all.