Stuck with position property | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Stuck with position property

I’m just learned position property and I don’t understand.. How relative behave next to absolute in the same screen? I mean why one time absolute is above the relative and one time it’s under relative I don’t get it.. help???

5th Oct 2023, 5:38 PM
elroi Coder
13 Answers
+ 3
I'll try to be simple. Basically we give relative position to the parent div and absolute give to its child. When you dont give relative position the absolute div considers whole body as its parent. Hope you'll understand I tried to explain in simple words
5th Oct 2023, 5:56 PM
Qurban Hussain
Qurban Hussain - avatar
+ 3
Check this code i made real quick. You will see 3 divs red one is parent div which have one blue div that is its child div, and one more orange div that is free div. I gave same styling to blue and orange div. I gave them both bottom 0. Both are at the bottom of there parents https://code.sololearn.com/WN4pZM9RVIXG/?ref=app
5th Oct 2023, 6:11 PM
Qurban Hussain
Qurban Hussain - avatar
+ 3
Is your question about this code? https://code.sololearn.com/WlBmCdasp0k1/?ref=app
5th Oct 2023, 10:55 PM
Chris Coder
Chris Coder - avatar
+ 1
What the meaning of “parent “ and “child”?
5th Oct 2023, 6:01 PM
elroi Coder
+ 1
Yea i understand the child and parent thing now but what if i weite four paragrahps and all of them are free div?
5th Oct 2023, 6:14 PM
elroi Coder
+ 1
How then the absulote and relative will act to each other?
5th Oct 2023, 6:15 PM
elroi Coder
+ 1
If you can again check the code, ive added 2 more divs in child1, parent2 and child2 but child2 leave the flow and considers child1 as its parent coz child1 has position that is absolute but parent2 has not any position (by default every element have static position). Positions are lil bit confusing so take your time and do more practice. For more clean understanding you could get help from yt. Ps: every time you havent gave position to parent then their parent is body no matter how much childs are
5th Oct 2023, 6:31 PM
Qurban Hussain
Qurban Hussain - avatar
0
Yea
5th Oct 2023, 11:09 PM
elroi Coder
0
I don’t get it why I write absolute to the second article but its only effected on the first article but not effecting on the third article..??
5th Oct 2023, 11:12 PM
elroi Coder
0
Can I explain that?(so appreciate your help btw)
5th Oct 2023, 11:13 PM
elroi Coder
0
Hi listen , my only question is how relative and absolute behave on the same screen, for example if the first section and third section will be relative and second section will be absolute..? What you showed me is how static and relative or absolute behave on the same screen.. i understand that cleearly, just don’t understand how the element will be placed when two of them are relative and one of them is absolute..
6th Oct 2023, 2:04 AM
elroi Coder
0
Can you explain me that? What the order of priority between them?
6th Oct 2023, 2:04 AM
elroi Coder
0
Hi Qurban, I found my answer thanks for help, the answer I was need was the order of the position in general: (relative,absolute<-static), this is the order of front and behind and for cases ther is multipe element with the same position the order of them is that the last element we wrote on html in frontest and the first we wrote is in behindest..
6th Oct 2023, 2:21 PM
elroi Coder