fluid.html 799 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Fluid Panel - 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 Panel</h2>
  14. <p>This example shows how to set the width of Panel to a percentage of its parent container.</p>
  15. <div style="margin:20px 0 10px 0;">
  16. </div>
  17. <div id="p" class="easyui-panel" title="Fluid Panel" style="width:100%;height:200px;padding:10px;">
  18. <p>The panel has a width of 100%.<p>
  19. </div>
  20. </body>
  21. </html>