I'm using a modal as an image viewer from materialize CSS http://materializecss.com/. When a user clicks a button, the modal opens. The modal has an image element within it. I've set both the height and the width to 100% but I cannot figure out why there is still a line at the bottom that my image is not covering.
<div id="modal1" class="modal">
<a id="closeIcon"><i class="fa fa-times-circle fa-2x"></i></a>
<img class="responsive-img" id="roomImage" src="">
</div>
#roomImage{
width: 100% !important;
height: 100% !important;
}