Nevin
Nevin

Reputation: 3298

'Justify-content:flex-end' puts flex content outside of the parent box in IE 11

I have an issue where when I apply justify-content: flex-end to a child element(Blue border) puts the box outside of the parent element(Red border) on IE 11 alone.

Here's the fiddle. [Open it on IE11 and chrome]

Am I doing something wrong here?

PS: The parent's are positioned absolute as there's a need for the same.

Thanks.

Upvotes: 1

Views: 354

Answers (1)

Jenti Dabhi
Jenti Dabhi

Reputation: 880

Can you please add also this css in your css code because you have added position absolute to this div

CSS

.testimonial__dots{left: auto; right: 0;}

Upvotes: 2

Related Questions