Currently, I am working with Bootstrap 4.1.3 and having an issue where my image does not scale up to the height of the row. Can anyone point out what I might be doing wrong in the following code?
<div class="container">
<div class="row top-logo">
<div class="col text-center"><img src="logo.png" class="img-fluid"></div>
</div>
</div>
The CSS used is as follows:
.top-logo {
height: 200px;
}
It's worth noting that my logo image is a 100x100 png file.