Position relative in css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Position relative in css

Why I cann't move div with position relative with right and bottom?I can only do it with left and top. https://code.sololearn.com/W4mBqh2ZzkUl/?ref=app

7th Oct 2021, 3:13 PM
Adilx01
2 Answers
0
It work but your box is moved out of screen. Make box smaller and you will see it is not right size. When box is relative it will apply position from its default flow.(in your code it is left/top) so if you set position right and bottom it will move box from bottom of box not body/window. Absolute work diferent, it make object position by using window size https://stackoverflow.com/questions/16290943/css-relative-right-or-bottom-almost-never-work
7th Oct 2021, 3:27 PM
PanicS
PanicS - avatar
0
https://code.sololearn.com/WivEOMy5hFcC/?ref=app
7th Oct 2021, 3:37 PM
PanicS
PanicS - avatar