Need clarification the use of data-inset

Need clarification the use of data-inset


Version JQM 1.2.0

Hate to tap into your busy day for a simple question, however I have tried ti implement data-inset on several pages of my site I'm building as a learning experience. It works great and as explained in the doc, but, on one page it will not work, no matter what I do. I know it's me but I can't figure out what I did. I referenced several books I purchased,and looked at my working pages.

My understanding on inst is if not specified, the default is true. Is that correct? I tried removing data-inset from the collapsible and still had no inset. 

I do not want you to solve my problem, but point me in the right direction.

Code collapsible-set:
  1. <!-- /header -->
  2. <!-- content -->
  3. <div data-role="collapsible-set" data-inset="true">
  4. <div data-role="collapsible" data-iconpos="right" data-mini="true">
  5. <h2>Chicken Cacciatore</h2>
  6. <p>
  7. Fresh Chicken Tenders sauteed with fresh Mushrooms, Peas, Green Peppers, and Black  
  8. Olives in a Red or Marsella Wine served with Spaghetti.
  9. </p>
  10. <table class="alignCtr">
  11. <tr>
  12. <td>Lunch:&nbsp;</td><td><strong>$12.00</strong>&nbsp;</td>
  13. <td>Dinner:&nbsp;</td><td><strong>$15.00</strong></td>
  14. </tr>
  15. </table>
  16. </div>
  17. <div data-role="collapsible" data-iconpos="right" data-mini="true">
  18.     <h2>Chicken Sorrentino</h2>
  19.     <p>
  20. Chicken Breast Bacon, Mushrooms and Olives, baked with Mozzarella Cheese in a Marsela 
  21. Wine Sauce served with Spahgetti.
  22. </p>
  23. <table class="alignCtr">
  24. <tr>
  25. <td>Lunch:&nbsp;</td><td><strong>$12.00</strong>&nbsp;</td>
  26. <td>Dinner:&nbsp;</td><td><strong>$15.00</strong></td>
  27. </tr>
  28. </table>
  29. </div>
  30. <div data-role="collapsible" data-iconpos="right" data-mini="true">
  31.     <h2>Chicken Marsala</h2>
  32.     <p>
  33. Chicken Breast, and sliced Mushroons sauteed in a Marsala Wine Sauce 
  34. Three Fresh Italian Cheeses with Homemade Meat or Mariana Sauce.
  35. </p>
  36. <table class="alignCtr">
  37. <tr>
  38. <td>Lunch:&nbsp;</td><td><strong>$12.00</strong>&nbsp;</td>
  39. <td>Dinner:&nbsp;</td><td><strong>$15.00</strong>/td>
  40. </tr>
  41. </table>
  42. </div>
Thans for taking time to check-out my problen.