aboutsummaryrefslogtreecommitdiff
path: root/docs/content
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/tables.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/content/tables.md b/docs/content/tables.md
index 0ab0b538d..fc6a6b19b 100644
--- a/docs/content/tables.md
+++ b/docs/content/tables.md
@@ -511,6 +511,24 @@ Regular table background variants are not available with the inverse table, howe
</table>
</div>
+{% highlight html %}
+<!-- On rows -->
+<tr class="bg-primary">...</tr>
+<tr class="bg-success">...</tr>
+<tr class="bg-warning">...</tr>
+<tr class="bg-danger">...</tr>
+<tr class="bg-info">...</tr>
+
+<!-- On cells (`td` or `th`) -->
+<tr>
+ <td class="bg-primary">...</td>
+ <td class="bg-success">...</td>
+ <td class="bg-warning">...</td>
+ <td class="bg-danger">...</td>
+ <td class="bg-info">...</td>
+</tr>
+{% endhighlight %}
+
{% capture callout-include %}{% include callout-warning-color-assistive-technologies.md %}{% endcapture %}
{{ callout-include | markdownify }}