From 4dd798de0509654275e9758106750d1d0bc4f2d8 Mon Sep 17 00:00:00 2001
From: allenpbiju <33065555+allenpbiju@users.noreply.github.com>
Date: Sun, 28 Oct 2018 23:47:18 +0530
Subject: [PATCH] info on table borders (#20245)
Some info and code is provided on table borders and adjusting them.
---
guide/english/html/tables/index.md | 78 +++++++++++++++++++++++++++++-
1 file changed, 77 insertions(+), 1 deletion(-)
diff --git a/guide/english/html/tables/index.md b/guide/english/html/tables/index.md
index b114b61a57..8cab499a49 100644
--- a/guide/english/html/tables/index.md
+++ b/guide/english/html/tables/index.md
@@ -92,7 +92,83 @@ Result:
+## Adding/Removing table border
+The table border width can be increased/decreased using the table border attribute.
+
+### Table Border Example
+```html
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+```
+Result:
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+
+```html
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+```
+Result:
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+
+```html
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+```
+Result:
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+
+
#### More Information:
-
MDN Article on the HTML