Element Framework

Panel

  • HTML
  • JS
  • CSS
<ef-panel spacing>
  <h3>Section</h3>
  <p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
</ef-panel>

                  

                  

ef-panel is a container for components. It provides a standard background color and padding, depending on the theme.

Creating a panel

ef-panel can be used as a generic container for housing any components.

<ef-panel>
  <h3>Section</h3>
  <p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
</ef-panel>

Add spacing

Default padding is managed by the theme and can be set to ef-panel using the spacing attribute.

  • HTML
  • JS
  • CSS
<ef-panel spacing>
  <h3>Section</h3>
  <p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
</ef-panel>

                  

                  
<ef-panel spacing>
  <h3>Section</h3>
  <p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
</ef-panel>

Customizing panel style

ef-panel can be styled similarly to div. For example, background color and other styles can be changed using a CSS class.

  • HTML
  • JS
  • CSS
<ef-panel class="primary-section">
  <h3># New Normal</h3>
  <p>New Normal is a term in business and economics that refers to financial conditions following the financial crisis of 2007-2008, the aftermath of the 2008&#x2013;2012 global recession, and the COVID-19 pandemic. <a style="color:white; text-decoration:underline;" href="https://en.wikipedia.org/wiki/New_Normal_(business)">Wikipedia</a></p>
</ef-panel>

                  
.primary-section {
  padding: 14px 20px;
  background-color: #001eff;
  color: #ffffff;
}
<style>
  .primary-section {
    padding: 14px 20px;
    background-color: #001eff;
    color: #ffffff;
  }
</style>
<ef-panel class="primary-section">
  <h3># New Normal</h3>
  <p>New Normal is a term in business and economics that refers to financial conditions following the financial crisis of 2007-2008, the aftermath of the 2008–2012 global recession, and the COVID-19 pandemic. <a style="color:white; text-decoration:underline;" href="https://en.wikipedia.org/wiki/New_Normal_(business)">Wikipedia</a></p>
</ef-panel>

API Reference

Attributes

boolean
spacing
Apply default padding from theme
boolean
transparent
Set panel background to transparent

Properties

boolean
spacing
Apply default padding from theme
false
boolean
transparent
Set panel background to transparent
false