CSS coding


SUBMITTED BY: Guest

DATE: March 21, 2014, 9:18 a.m.

FORMAT: CSS

SIZE: 725 Bytes

HITS: 3016

  1. /* site.css */
  2. body { background-image: url('../images/wallpaper.jpg');
  3. background-repeat: no-repeat;
  4. background-attachment: fixed;
  5. background-position:right;
  6. font-family: verdana, geneva, arial, helvetica, sans-serif;
  7. }
  8. h1 {color: red; }
  9. strong {font-weight: bolder;}
  10. ol { font-family: serif;
  11. list-style-type: square;
  12. }
  13. table {border: solid red 4px;
  14. border-collapse: collapse;
  15. background: olive;
  16. }
  17. td {border: solid blue 2px; }
  18. th {border-right: solid black 2px;}
  19. /* classe
  20. .maClasse { color: cyan; }
  21. /* identifiant
  22. #monId { background: orange; }
  23. */

comments powered by Disqus