How can I properly position element with css anywhere on a webpage | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can I properly position element with css anywhere on a webpage

14th Sep 2021, 9:12 PM
Wisdom Dike
Wisdom Dike - avatar
3 Answers
+ 1
first should give the parent element a "position relative" before using "position: absolute" on the child element along with top: ""; bottom: ""; right: ""; left: ""; Until it's placed where you want it. it can be in px or % depending on the unit you want to use.
14th Sep 2021, 11:14 PM
jude miracle
jude miracle - avatar
0
try using "position: absolute" along with "top: x px" "bottom: y px" "right: w px" "left: v px" Until it's placed where you want it.
14th Sep 2021, 11:03 PM
Tia
Tia - avatar
0
Great additional points jude miracle. Excellent information. Wisdom Dike I hope our responses have helped get you started in the right direction. Best wishes with your coding
15th Sep 2021, 7:05 PM
Tia
Tia - avatar