What are relative and absolute positions? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What are relative and absolute positions?

21st Feb 2017, 2:57 AM
John
2 Answers
+ 8
Absolute links go to a specific location. They're usually very long and complicated, and if the item linked to is ever moved from that exact location, it won't be found. Ex: C:\Users\guest\Desktop\WelcomePage.html Relative links are like a shorthand. They start looking where the link is used, and all you write is where to go from there. This makes things easier to move around to other folders, devices, etc. Ex: \Audio\demo.wav
21st Feb 2017, 3:35 AM
Tamra
Tamra - avatar
+ 4
It's sounds like you are mixing two differents context ^^ On one side, you have 'relative' and 'absolute' concepts for the css property 'position', and on the other, the 'relative' and 'absolute' concepts of Urls ( paths - in <a> link tags or others, attribut 'href', in <img> or others, 'src', in css embeded in 'url()'... ). That's two things totally differents: about which one are you asking?
21st Feb 2017, 8:16 AM
visph
visph - avatar