overflow-y scroll not working in IE 11

32,518

Solution 1

Actually this only works as of 5/2018 to have the overflow div contain another element inside of it. The other solutions do not

This works

  <div style="overflow:auto"><p>{{largepiecetext}}</p></div>

This does not

  <div style="overflow:auto">{{largepiecetext}}</div>

Solution 2

The Below code worked for me . have added overflow-x, overflow-y,min-height, max-height

<div style="overflow-x: auto; overflow-y: scroll;min-height: 110px;max-height: 110px;">{{largepiecetext}}</div>

Share:
32,518
Manas Saxena
Author by

Manas Saxena

Updated on September 23, 2020

Comments

  • Manas Saxena
    Manas Saxena over 3 years

    Hi I have registration form .I need it to have a vertical scrollbar, I am using the below css:

    .scrollbar{
        overflow-y: scroll;
        height:400px;
    }
    

    The above code works for Firefox and Chrome but IE doesnt show up the scrollbar at all . Any idea how to fix this