Bulma: Modal component is not scrollable IE11

Created on 10 Oct 2018  路  2Comments  路  Source: jgthms/bulma

This is about Bulma.

It is a bug in IE11 browser. Other browsers are not concerned.

Overview of the problem

This is about the Bulma CSS framework

I'm using Bulma version 0.7.1
My browser IE11

Description

The modal component is not scrollable in IE11 so user can interact with de bottom hidden part.

Steps to Reproduce

Create a modal with a lot of content (depending on your screen resolution) to force bulma to create an scroll.

<div class="modal" class="is-active">
    <div class="modal-background"></div>
        <div class="modal-card">
           <!-- A lot of content depending on your screen resolution-->
        </div> 
    </div>
</div>

Expected behavior

The modal-card content is scrollable

Actual behavior

The modal-card is not scrollable

Most helpful comment

I found this still an issue but fixed it like this:

.modal-card{
  overflow: auto;
}

All 2 comments

looks fixed in #1909

I found this still an issue but fixed it like this:

.modal-card{
  overflow: auto;
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

scottgrayson picture scottgrayson  路  3Comments

JenCant picture JenCant  路  3Comments

leofontes picture leofontes  路  3Comments

swthate picture swthate  路  3Comments

Wikiki picture Wikiki  路  3Comments