2
votes

I have an Angular Application which should work also in IE11: how can I write an equivalent to the following instruction but valid also for IE11?

overflow-y: overlay;
max-height: calc(100vh - 195px);
1

1 Answers

0
votes

Ok, the answer was the following:

1) In main style file:

html, body { height:100%; }

2) In the specific div:

style="height: calc(100% - 100px); overflow-y: overlay;"