Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2018-03-31 11:02:52
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
CSS: flex-box and IE11
can anybody tell me, why IE11 doesn’t align container-2
inside the section content-5
to the bottom of a section at this site?
IE11 inspector tool doesn’t give any errors and i can’t figure it out myself…
css for content-5 section:
.content-5 {
padding-top: 5%;
padding-bottom:5%;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: end;
justify-content: flex-end;
min-height:100vh;
position:relative;
z-index:3;
}
Last edited by Gallex (2018-04-01 11:24:47)
Offline
#2 2018-04-01 12:01:33
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: CSS: flex-box and IE11
IE 10/11 has min-height
bug. there is a fix for this
will try…
Offline
Pages: 1