Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <div class="textTextmenu">
  2. <img src="pic/postimage.png"/>
  3. <span>
  4. span 1
  5. </span>
  6. <span>
  7. span 2
  8. </span>
  9. </div>
  10.  
  11. .textTextmenu>img:first-child{
  12. border:2px solid red;
  13. /*How to select First child? / this way is wronge and image is not selected*/
  14. }
  15.  
  16. .textTextmenu img:first-child{
  17. border:2px solid red;
  18. /*How to select First child? / this way is wronge and image is not selected*/
  19. }
  20.  
  21. .textTextmenu img:first-child{
  22. border:2px solid red;
  23. }
  24.  
  25. 1) .textTextmenu span:first-of-type { color:red }
  26. 2) .textTextmenu :nth-child(1){border:1px solid red;}
  27. 3) .textTextmenu span:nth-child(2){color:red;}
  28.  
  29. .textTextmenu img + span{
  30. border:2px solid red;
  31. /*How to select First child? / this way is wronge and image is not selected*/
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement