fluid.html 863 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Fluid Tabs - jQuery EasyUI Demo</title>
  6. <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
  7. <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
  8. <link rel="stylesheet" type="text/css" href="../demo.css">
  9. <script type="text/javascript" src="../../jquery.min.js"></script>
  10. <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
  11. </head>
  12. <body>
  13. <h2>Fluid Tabs</h2>
  14. <p>This example shows how to set the width of Tabs to a percentage of its parent container.</p>
  15. <div style="margin:20px 0 10px 0;"></div>
  16. <div class="easyui-tabs" style="width:100%;height:250px">
  17. <div title="About" style="padding:10px">
  18. <p>The tabs has a width of 100%.</p>
  19. </div>
  20. <div title="Title2"></div>
  21. <div title="Title3"></div>
  22. </div>
  23. </body>
  24. </html>