Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /******************************/
  2. /******* Tipos de color *******/
  3. /******************************/
  4. /* Por nombre del color */
  5. .color-name{color: red;}
  6. /* Por composicion de color */
  7. .color-rgb{color: rgb(255,0,0);}
  8. /* Por cifas hexadecimales */
  9. .color-hexadecimal{color: #ff0000;}
  10. /* Por composicion con opacidad */
  11. .color-rgba{color: rgba(255,0,0,0.8);}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement