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 + + + + + + + + + +
FruitsQuantity
Apple2
+``` +Result: + + + + + + + + + +
FruitsQuantity
Apple2
+ +```html + + + + + + + + + +
FruitsQuantity
Apple2
+``` +Result: + + + + + + + + + +
FruitsQuantity
Apple2
+ +```html + + + + + + + + + +
FruitsQuantity
Apple2
+``` +Result: + + + + + + + + + +
FruitsQuantity
Apple2
+ + #### More Information: - MDN Article on the HTML tag