Position: fixed and justify-content not working together | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Position: fixed and justify-content not working together

Why does justify-content and position fixed not work? What If I want to keep the body fixed, but align it center? How? https://code.sololearn.com/W6LtSi88u47a/?ref=app

11th Aug 2020, 7:40 AM
Clueless Coder
Clueless Coder - avatar
4 Answers
+ 2
If you want body with position: fixed, you can set <p>Hello</p> with div.container <div class="container"><p>Hello</p></div> Set flexbox from .container
11th Aug 2020, 9:12 AM
Calviղ
Calviղ - avatar
+ 2
position:fixed makes flexbox not workable, since it overrides the position of <p>Hello</p> Try to remove it and see the difference. If you want align-items:center works; try to set height: 100vh; since the body height of webview is not set to screen height by default.
11th Aug 2020, 9:05 AM
Calviղ
Calviղ - avatar
+ 1
Add red color border to body and blue color boder to p . Run the code. You will found that everything is working properly. The problem is that you have taken your whole viewport as body and expecting result accordingly but body is just that red bordered area in your code.
11th Aug 2020, 8:50 AM
Divya Mohan
Divya Mohan - avatar
+ 1
Clueless Coder Learn flexbox from this good tutorial https://youtu.be/fYq5PXgSsbE
11th Aug 2020, 11:17 AM
Calviղ
Calviղ - avatar