Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2014
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. li.hot {
  2. list-style: inside url('../img/chili.png');
  3. direction: rtl;
  4. }
  5.  
  6. li.vegetarian {
  7. list-style: inside url('../img/vegetarian.png');
  8. direction: rtl;
  9. }
  10.  
  11. <h3>HOUSE SPECIALS</h3>
  12. <ul class="list-unstyled">
  13. <li class="hot">Gosht achar</li>
  14. <li class="vegetarian">Mixed vegetable dhansak</li>
  15. <li>Meti Gosht</li>
  16. </ul>
  17.  
  18. <h3>HOUSE SPECIALS</h3>
  19. <ul class="list-unstyled">
  20. <!-- The following would display chili.png repeated 5
  21. times to the right of the list item -->
  22. <li class="xxxx-hot">Chicken phaal</li>
  23. <!-- The following would display chili.png and vegetarian.png
  24. to the right of the list item -->
  25. <li class="hot vegetarian">Vegetable biryani</li>
  26. <li>Meti Gosht</li>
  27. </ul>
  28.  
  29. <ul>
  30. <li class="hot hot-1">Gosht achar</li>
  31. <li class="vegetarian">Mixed vegetable dhansak</li>
  32. <li class="hot hot-4">Chicken phaal</li>
  33. <li class="hot hot-1 vegetarian">Vegetable biryani</li>
  34. <li class="hot hot-3">Hot-3</li>
  35. <li class="hot hot-2 vegetarian">Hot-2, Vegetarian</li>
  36. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement