Something wonderful is gonna happen!
Intro Root Texts Colors Layout Containers

#Tables

The usual HTML table, but more stylized

Basic table

Name Character Movie
Robert Downey Jr. Iron Man The Avengers
Chris Hemsworth Tor The Avengers
Michael J. Fox Marty McFly Back to the Future
Patrick Swayze Johnny Castle Dirty Dancing
<table class="be-table">
  <tr>
    <th>Name</th>
    <th>Character</th>
    <th>Movie</th>
  </tr>
  
  <tr>
    <td>Robert Downey Jr.</td>
    <td>Iron Man</td>
    <td>The Avengers</td>
  </tr>
  ...
  <tr>
    <td>Patrick Swayze</td>
    <td>Johnny Castle</td>
    <td>Dirty Dancing</td>
  </tr>
</table>

Differentiate row

You can interpolate a color between the rows to make it easier to visualize. Just use the be-table-even class.

Name Character Movie
Robert Downey Jr. Iron Man The Avengers
Patrick Swayze Johnny Castle Dirty Dancing
Michael J. Fox Marty McFly Back to the Future
<table class="be-table be-table-even">
...
</table>

Remove borders

You can remove the borders to the table using the be-bdr-none class. Or you can add a color to the header.

Name Character Movie
Robert Downey Jr. Iron Man The Avengers
Patrick Swayze Johnny Castle Dirty Dancing
Michael J. Fox Marty McFly Back to the Future
<table class="be-table be-bdr-none">
  <tr class="be-bg-clouds">
    <th>Name</th>
    <th>Character</th>
    <th>Movie</th>
  </tr>
...
</table>

Table Responsive

Sometimes you may need a very wide table so it would need to fit properly into small screen formats.

In these cases it will be enough to nest the entire table in a div with the be-table-responsive class. Please note that table will display a horizontal scroll bar when the screen is too small to show the full content.

Name Character Movie Year Director and Screenplay Producer Music
Robert Downey Jr. Iron Man The Avengers 2012 Joss Whedon Kevin Feige Alan Silvestri
Michael J. Fox Marty McFly Back to the Future 1985 Robert Zemeckis Neil Canton Alan Silvestri

Please resize the browser to see how the table fits.