pseudo selector
div:first-child{
color:red
}
div :fist-child{
color:green
}
the difference is of space between div and child if not space means only direct child
if space is given all the element
div:first-child{
color:red
}
div :fist-child{
color:green
}
the difference is of space between div and child if not space means only direct child
if space is given all the element