Does 'position: absolute' conflict with flexbox?



Absolutely positioning will not conflict with flex containers. You need to set the parent width and values as well:

.parent {
   display: flex;
   justify-content: center;
   position: absolute;
   width:100%
}

The following is the HTML:

<div class = "parent">
   <div class = "child">text</div>
</div>
Updated on: 2020-01-28T09:21:30+05:30

251 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements