diff --git a/src/FlexibleTable/TableBody.jsx b/src/FlexibleTable/TableBody.jsx
index 24f0a66405472f3f84b9c5eba62dc813e584f172..0415768a2f92c52c5f0110476fd7f28b29689510 100644
--- a/src/FlexibleTable/TableBody.jsx
+++ b/src/FlexibleTable/TableBody.jsx
@@ -30,6 +30,7 @@ export default function TableBody({tableStyles, updateCell, rows, states}) {
 		{Array.from({length: 2}).map((_, trIndex) => (
 			<tr className={"fitb-item-table-row"} style={{
 				background: (multipleBodyBackground && trIndex === 1) ? bodyBackgroundEven : bodyBackground,
+				borderWidth: "0px",
 				borderStyle: "solid",
 				borderColor: bodyBorderRowColor,
 				borderTopWidth: bodyBorderRowWidthTop,
@@ -39,6 +40,7 @@ export default function TableBody({tableStyles, updateCell, rows, states}) {
 					states[index] ?
 						<td className={"fitb-item-table-cell"} key={index}
 							style={{
+								borderWidth: "0px",
 								borderStyle: "solid",
 								borderColor: bodyBorderColumnColor,
 								borderLeftWidth: bodyBorderColumnWidthLeft,
diff --git a/src/FlexibleTable/TableHead.jsx b/src/FlexibleTable/TableHead.jsx
index 1b07ee2bb81a1295270960230c3d981bac835e39..2f66c338d963f130b84c3bb4a61b1ad9f9a9dc07 100644
--- a/src/FlexibleTable/TableHead.jsx
+++ b/src/FlexibleTable/TableHead.jsx
@@ -21,6 +21,7 @@ export default function TableHead( {headers, updateHeader, tableStyles, states}
 	return (
 		<thead className={"fitb-item-table-header"} style={{
 			borderStyle: "solid",
+			borderWidth: "0px",
 			borderColor: headerBorderRowColor,
 			borderTopWidth: headerBorderRowWidthTop,
 			borderBottomWidth: headerBorderRowWidthBottom,
@@ -33,6 +34,7 @@ export default function TableHead( {headers, updateHeader, tableStyles, states}
 					<th className={"fitb-item-table-header-cell"} key={index}
 						style={{
 							borderStyle: "solid",
+							borderWidth: "0px",
 							borderColor: headerBorderColumnColor,
 							borderLeftWidth: headerBorderColumnWidthLeft,
 							borderRightWidth: headerBorderColumnWidthRight,