/docs/buttons/buttons-inline.html

https://github.com/asgeo1/jquery-mobile · HTML · 80 lines · 54 code · 26 blank · 0 comment · 0 complexity · c8c3e703e0e9591ce6dc1a459162b55e MD5 · raw file

  1. <!DOCTYPE html>
  2. <html class="ui-mobile-rendering">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>jQuery Mobile Docs - Inline buttons</title>
  7. <link rel="stylesheet" href="../../css/themes/default/" />
  8. <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
  9. <script src="../../js/jquery.js"></script>
  10. <script src="../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
  11. <script data-main="../../js/jquery.mobile.docs" src="../../external/requirejs/require.js"></script>
  12. </head>
  13. <body>
  14. <div data-role="page" class="type-interior">
  15. <div data-role="header" data-theme="f">
  16. <h1>Inline buttons</h1>
  17. <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  18. </div><!-- /header -->
  19. <div data-role="content">
  20. <div class="content-primary">
  21. <p>By default, all buttons in the body content are styled as block-level element so they fill the width of the screen:</p>
  22. <a href="index.html" data-role="button">Button</a>
  23. <p>However, if you want a more compact button that is only as wide as the text and icons inside, add the <code> data-inline="true"</code> attribute to the button:</p>
  24. <a href="index.html" data-role="button" data-inline="true">Button</a>
  25. <p>If you have multiple buttons that should sit side-by-side on the same line, add the <code> data-inline="true"</code> attribute to each button. This will style the buttons to be the width of their content and float the buttons so they sit on the same line. </p>
  26. <pre><code>
  27. &lt;a href=&quot;index.html&quot; data-role=&quot;button&quot; data-inline=&quot;true&quot;&gt;Cancel&lt;/a&gt;
  28. &lt;a href=&quot;index.html&quot; data-role=&quot;button&quot; data-inline=&quot;true&quot; data-theme=&quot;b&quot;&gt;Save&lt;/a&gt;
  29. </code></pre>
  30. <p>The result is this:</p>
  31. <a href="index.html" data-role="button" data-inline="true">Cancel</a>
  32. <a href="index.html" data-role="button" data-theme="b" data-inline="true">Save</a>
  33. <p>If you want buttons to sit side-by-side but stretch to fill the width of the screen, you can use the <a href="../content/content-grids.html">content column grids</a> to put normal full-width buttons into 2- or 3-columns.</p>
  34. </div><!--/content-primary -->
  35. <div class="content-secondary">
  36. <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
  37. <h3>More in this section</h3>
  38. <ul data-role="listview" data-theme="c" data-dividertheme="d">
  39. <li data-role="list-divider">Buttons</li>
  40. <li><a href="buttons-types.html">Button basics</a></li>
  41. <li><a href="buttons-icons.html">Button icons</a></li>
  42. <li data-theme="a"><a href="buttons-inline.html">Inline buttons</a></li>
  43. <li><a href="buttons-grouped.html">Grouped buttons</a></li>
  44. <li><a href="buttons-themes.html">Theming buttons</a></li>
  45. </ul>
  46. </div>
  47. </div>
  48. </div><!-- /content -->
  49. <div data-role="footer" class="footer-docs" data-theme="c">
  50. <p>&copy; 2011 The jQuery Project</p>
  51. </div>
  52. </div><!-- /page -->
  53. </body>
  54. </html>