Guest User

Untitled

a guest
Oct 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /**
  2. * The first commented line is your dabblet’s title
  3. */
  4.  
  5. h1 span{
  6. color:Red /* I only target <span> tags nested within a h1 */
  7. }
  8.  
  9. h1 ~ span{
  10. color:blue /* I dont taget <span> tags nest within a h1, but any <span> tag that follows a h1 on the same nested level */
  11. }
Add Comment
Please, Sign In to add comment