section.html 988 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. layout: documentation
  3. doc-tab: layout
  4. doc-subtab: section
  5. ---
  6. {% include subnav-layout.html %}
  7. <section class="section">
  8. <div class="container">
  9. <h1 class="title">Section</h1>
  10. <h2 class="subtitle">
  11. A simple container to divide your page into <strong>sections</strong>, like the one you're currently reading
  12. </h2>
  13. <hr>
  14. <div class="content">
  15. <p>Use sections as <strong>direct</strong> children of <code>body</code>.</p>
  16. </div>
  17. {% highlight html %}
  18. <body>
  19. <section class="section">
  20. <div class="container">
  21. <h1 class="title">Section</h1>
  22. <h2 class="subtitle">
  23. A simple container to divide your page into <strong>sections</strong>, like the one you're currently reading
  24. </h2>
  25. </div>
  26. </section>
  27. </body>
  28. {% endhighlight %}
  29. <div class="content">
  30. <p>You can use the modifiers <code>is-medium</code> and <code>is-large</code> to change the <strong>spacing</strong>.</p>
  31. </div>
  32. </div>
  33. </section>