Respuesta :

Nested elements are elements that are placed within another element.

When an element is nested within another, all lines of the nested element will inherit the properties of the parent element.

Take for instance, the following HTML code

<p align = "center"> I am a <b>boy</b> </p>

In the above HTML code,

The bold element (i.e. <b>) is nested in the paragraph element (i.e. <p>)

The paragraph element is aligned center.

This means that, all elements in the paragraph element (including the bold element) will be centralized.

Hence, all lines of a nested element will inherit the properties of the parent element.

Read more about nested elements at:

https://brainly.com/question/22914599

ACCESS MORE