unfold.css 641 B

1234567891011121314
  1. .bg1 { background: transparent url(cat.png) no-repeat scroll left center; }
  2. .bg2 { background: url(cat.png) no-repeat scroll left center; }
  3. .bg3 { background: url(cat.png) scroll left center; }
  4. .bg4 { background: url(cat.png) repeat left center; }
  5. .bg5 { background: url(cat.png) left center; }
  6. .bg6 { background: url(cat.png) scroll; }
  7. .bg7 { background: url(cat.png) repeat-x; }
  8. .bg8 { background: url(cat.png) inherit; }
  9. .bg9 { background: url(cat.png); }
  10. .bg10 { background: #fff; }
  11. .list-style1 { list-style: circle outset url(cat.png) }
  12. .list-style2 { list-style: disk inset }
  13. .list-style3 { list-style: inset url(cat.png) }