Answers for "css descendant selectors w3schools"

CSS
9

child css

p:nth-child(2)
 	{     
 		background: red;
 	}
Posted by: Guest on May-14-2020
0

sibling selector css

/*General Sibling*/
/*The general sibling selector selects all elements that are siblings of a specified element.
The following example selects all <p> elements that are siblings of <div> elements: */
/*<div></div>
  <p></p>*/
div ~ p{
}

/*Adjacent Sibling*/
/*The adjacent sibling selector is used to select an element that is directly after another specific element.
Sibling elements must have the same parent element, and "adjacent" means "immediately following".
The following example selects the first <p> element that are placed immediately after <div> elements*/
/*<div><p></p></div>
  */
div + p{
}
Posted by: Guest on December-09-2020

Browse Popular Code Answers by Language