diff --git a/docs/table.html b/docs/table.html
index f5379d7..a9d83b2 100644
--- a/docs/table.html
+++ b/docs/table.html
@@ -150,6 +150,7 @@
- Tables are responsive by default and will change to a card-like view below a certain screen width. If you'd rather not make them responsive, check the last section on this page.
- Specifying the
data-label
attribute is essential for the responsive version of a table to display properly. You can, however, use a value different from the column's name. Make sure it does not confuse your users, though.
+ - We strongly suggest you avoid adding multiple rows in your
<thead>
element, as it could cause problems with accessibility. However, if you absolutely must, you might want to check this codepen for an idea on how to deal with irregular border styling.
diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md
index 86c7fed..e52e465 100644
--- a/docs/v2/DEVLOG.md
+++ b/docs/v2/DEVLOG.md
@@ -860,3 +860,4 @@
- Documented `tooltip`. No *dos* and *don'ts* seem to be required, as the use cases are really really simple.
- Added accessibility guidelines for using `role="button"` in `navigation`.
- Added `sticky` documentation in `navigation`. No *dos* and *dont's* either, I'm afraid, can't find any troublesome things with this.
+- Added a quick fix for `table`s' irregular styling of mutliline headers. Resolves #54.