What is a child element? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is a child element?

18th Jun 2019, 6:42 AM
Mehedi Hasan
Mehedi Hasan - avatar
2 Answers
+ 3
nice explanation, Jack. here is a demo as supplement : https://code.sololearn.com/WZwQjTQzYrxe/?ref=app
18th Jun 2019, 8:10 AM
Gordon
Gordon - avatar
+ 1
A child element is anything that sits underneath another element but are related. SO for example in HTML, you can have a div which is a container and anything inside the <div> tags will be a child element of the div Example: <div> <p> This is a paragraph inside my div, as i am indented between 2 div tags, i am a child element of the div. </p> </div>
18th Jun 2019, 7:29 AM
Jack Robert Nicholas Ahern