Guest User

Untitled

a guest
Mar 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ```
  2.  
  3. <style>
  4. .txt {
  5. color: rgb(255, 255, 0);
  6. }
  7.  
  8. // or
  9. .txt {
  10. color: #eaeaea;
  11. }
  12.  
  13.  
  14. // or
  15. .txt {
  16. color: #f01; // Equivalent to #ff0011
  17. }
  18.  
  19.  
  20. // or
  21. .txt {
  22. color: red;
  23. }
  24.  
  25.  
  26. // or
  27. .txt {
  28. color: rgb(100%, 100%, 0%); //when we use rgb of percentage , 0 needs percent sign. In other case, 0 does not required units
  29. }
  30.  
  31. </style>
  32.  
  33.  
  34. <span class="txt">hello</span>
  35.  
  36. ```
Add Comment
Please, Sign In to add comment