Advertisement
Guest User

Untitled

a guest
May 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <div>
  2. <p>
  3. Once upon a time..
  4. </p>
  5. <p>
  6. A beautiful princess..
  7. </p>
  8. </div>
  9.  
  10. div p:first-of-type:first-letter { font-weight: bold; }
  11.  
  12. <div>
  13. <h1>My Great Title</h1>
  14. <p>
  15. In my younger years I was a great man, but all that changed when I saw...
  16. </p>
  17. <p>
  18. I struck him for shaming my name, my family, my life. It was a shameful...
  19. </p>
  20. </div>
  21.  
  22. div p:first-of-type:first-letter{
  23. /* add your awesome code here */
  24. }
  25.  
  26. div p:first-letter
  27.  
  28. div p:first-letter{
  29. color:blue;
  30. }
  31.  
  32. <div>
  33. <p class="FirstLetter">
  34. Once upon a time..
  35. </p>
  36. <p>
  37. A beautiful princess..
  38. </p>
  39. </div>
  40.  
  41. .FirstLetter:first-letter {
  42. // styling rules here
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement