wet-boew / wet-boew-styleguide

A style guide for the Web Experience Toolkit.
http://wet-boew.github.io/wet-boew-styleguide/index-en.html
35 stars 32 forks source link

Error in table code example #353

Closed shawnthompson closed 6 years ago

shawnthompson commented 6 years ago

You're missing a tr in the thead for the sample code on the Working Examples: Tables

// table with limited column and overall width
<div class="col-md-3">
 <table class="table">
 <caption class="wb-inv">Caption text</caption>
   <thead>
    <th scope="col" class="col-sm-8">...</th>
    <th scope="col" class="col-sm-4">...</th>
   </thead>
   <tbody>
    <tr>
     <td>...</td>
     <td>...</td>
    </tr>
   </tbody>
 </table>
</div>

Should be

// table with limited column and overall width
<div class="col-md-3">
 <table class="table">
 <caption class="wb-inv">Caption text</caption>
   <thead>
   <tr>
    <th scope="col" class="col-sm-8">...</th>
    <th scope="col" class="col-sm-4">...</th>
   </tr>
   </thead>
   <tbody>
    <tr>
     <td>...</td>
     <td>...</td>
    </tr>
   </tbody>
 </table>
</div>