diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4760f0d0805..74402771e33 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@
- Altered functionality of `truncate` on `EuiBreadcrumbs` and added `truncate` ability on breadcrumb item ([#1346](https://github.com/elastic/eui/pull/1346))
- Altered `EuiHeader`'s location of `EuiHeaderBreadcrumbs` based on the new `truncate` ability ([#1346](https://github.com/elastic/eui/pull/1346))
- Added support for `href` and `target` props in `EuiBasicTable` actions ([#1347](https://github.com/elastic/eui/pull/1347))
+- Added `.eui-textBreakWord` CSS utility class ([#1349](https://github.com/elastic/eui/pull/1349))
+
+**Bug fixes**
+
+- Fixed word-breaks in table cells for Firefox ([#1349](https://github.com/elastic/eui/pull/1349))
## [`5.4.0`](https://github.com/elastic/eui/tree/v5.4.0)
diff --git a/src-docs/src/views/tables/basic/basic.js b/src-docs/src/views/tables/basic/basic.js
index dbe7c930fd0..93d020ed486 100644
--- a/src-docs/src/views/tables/basic/basic.js
+++ b/src-docs/src/views/tables/basic/basic.js
@@ -97,6 +97,7 @@ export const Table = () => {
return {
className: 'customCellClass',
'data-test-subj': `cell-${id}-${field}`,
+ textOnly: true,
};
};
diff --git a/src-docs/src/views/tables/basic/basic_section.js b/src-docs/src/views/tables/basic/basic_section.js
index 4221067205b..b0027047478 100644
--- a/src-docs/src/views/tables/basic/basic_section.js
+++ b/src-docs/src/views/tables/basic/basic_section.js
@@ -61,6 +61,10 @@ export const section = {
returns the React node that should be displayed as the content of the cell. This can be as simple as
formatting values (e.g. the "Date of Birth" column) to utilizing more complex React components
(e.g. the "Online", "Github" and "Nationality" columns as seen below).
+
+ Note: the basic table will treat any cells that use a
+ We recommend using