+ 2
What is the meaning of the word nested?
6 ответов
+ 14
It means an element Inside another element..
if
{
if
{
}
else
{
}
else
{
}
//nested if else
+ 2
anything inside some thing or we can say the sub sets of the super sets like things are word nests
+ 1
yes something inside something else. similar to folders inside other folders in windows explorer
+ 1
It means that an element is contained in another one. In real life a present is nested in a box.
0
element inside another element
0
In simple, say you have this:
<div>
<img>
</div>
The “img” tag is nested in the “div” tag. This is shown by the div tag being opened (<div>) before the “img” tag and closed (</div>) after it.