Posted By


Barlon on 11/13/11

Tagged


Statistics


Viewed 441 times
Favorited by 0 user(s)

CSS3 usable today


/ Published in: CSS
Save to your folder(s)

Usable CSS3


Copy this code and paste it in your HTML
  1. foo. {
  2. border.radius: 10px;
  3. }
  4.  
  5. p {
  6. text-shadow: 1px 1px 1px 1px #999;
  7. }
  8.  
  9. .foo {
  10. box-shadow: 1px 1px 1px 1px #999;
  11. }
  12.  
  13. /* Multiple background images */
  14. body {
  15. background: url(image1.png) no-repeat top left,
  16. url(image2.png) repeat-x bottom left,
  17. url(image3.png) repeat-y top right;
  18. }
  19.  
  20. .foo {
  21. opacity: 0.5;
  22. }
  23.  
  24. .foo {
  25. color: rgba(0, 0, 0, 0.75); /*black at 75% opacity*/
  26. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.