Example
Open type in a new window
Code sample
<div class="container_table">
<table data-row-theme="striped">
<thead>
<tr>
<th scope="col" id="col_header_speed">
Speed
</th>
<th scope="col" id="col_header_up_down_speeds">
Up/down speeds <sup><a href="#line_speed_units">1</a></sup>
</th>
<th scope="col" id="col_header_line_rental" class="cell_amount">
Line rental
</th>
<th scope="col" id="col_header_data" class="cell_amount">
Data
</th>
<th scope="col" id="col_header_total" class="cell_amount cell_total">
Total <sup><a href="#inclusive_vat">2</a></sup>
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" headers="col_header_speed" id="row_header_300">
300 Mbps
</th>
<td headers="row_header_300 col_header_up_down_speeds">
300/300 Mbps
</td>
<td headers="row_header_300 col_header_line_rental" class="cell_amount">
R2,099
</td>
<td headers="row_header_300 col_header_data" class="cell_amount">
R899
</td>
<td headers="row_header_300 col_header_total" class="cell_amount cell_total">
R2,998
</td>
</tr>
<tr>
<th scope="row" headers="col_header_speed" id="row_header_200">
200 Mbps
</th>
<td headers="row_header_200 col_header_up_down_speeds">
200/200 Mbps
</td>
<td headers="row_header_200 col_header_line_rental" class="cell_amount">
R1,811
</td>
<td headers="row_header_200 col_header_data" class="cell_amount">
R899
</td>
<td headers="row_header_200 col_header_total" class="cell_amount cell_total">
R2,710
</td>
</tr>
<tr>
<th scope="row" headers="col_header_speed" id="row_header_100">
100 Mbps
</th>
<td headers="row_header_100 col_header_up_down_speeds">
100/100 Mbps
</td>
<td headers="row_header_100 col_header_line_rental" class="cell_amount">
R1,265
</td>
<td headers="row_header_100 col_header_data" class="cell_amount">
R699
</td>
<td headers="row_header_100 col_header_total" class="cell_amount cell_total">
R1,964
</td>
</tr>
<tr>
<th scope="row" headers="col_header_speed" id="row_header_50">
50 Mbps
</th>
<td headers="row_header_50 col_header_up_down_speeds">
50/50 Mbps
</td>
<td headers="row_header_50 col_header_line_rental" class="cell_amount">
R1,093
</td>
<td headers="row_header_50 col_header_data" class="cell_amount">
R699
</td>
<td headers="row_header_50 col_header_total" class="cell_amount cell_total">
R1,792
</td>
</tr>
</tbody>
</table>
<ol>
<li id="line_speed_units">
All line speeds measured in megabits per second (Mbps)
</li>
<li id="inclusive_vat">
Inclusive of <abbr title="Value Added Tax">VAT</abbr>
</li>
</ol>
</div>
Notes
- Use the attribute:
data-row-theme="striped".
- Can be mixed with
data-cell-mode="spaced". See below.