LogoLogo
CtrlK
  • 🧙‍♂️Dude Coding Standards
  • HTML
    • Accessible HTML Guidelines
      • Blocks
      • Upper title/Prefix
      • Global links
      • Search form
    • HTML elements
      • Lists
      • Headings
  • PHP
    • PHP Guidelines
    • Linting PHP with PHP_CodeSniffer
  • CSS
    • CSS and SCSS Guidelines
      • Naming Conventions
        • Custom properties and variables
        • Naming classes
      • Defining font families
      • Nesting
    • Stylelint
  • SVGs
    • Importing SVG files into a project
    • SVGs and accessibility
    • Styling SVGs
Powered by GitBook
Page cover
On this page
  • Resources
  • Section blocks

Was this helpful?

Edit on GitHub
Export as PDF
  1. HTML
  2. Accessible HTML Guidelines

Blocks

Resources

LogoBlock libraryAir by Dude

Section blocks

This is an example on what structure should be used in Gutenberg Blocks.

<section class="block block-example">
  <div class="container">
     <!-- Content -->
  </div>
</section>

Last updated 5 months ago

Was this helpful?