From 63c30eb4627f2d78745b845dc0ad6c899fbe31c1 Mon Sep 17 00:00:00 2001 From: Setyo Adi Wibowo Date: Sat, 19 Jan 2019 05:32:54 +0700 Subject: [PATCH] Add rowspan and colspan with example (#29196) --- guide/english/html/tables/index.md | 52 ++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/guide/english/html/tables/index.md b/guide/english/html/tables/index.md index feb69a0eb8..e3f85426bf 100644 --- a/guide/english/html/tables/index.md +++ b/guide/english/html/tables/index.md @@ -91,6 +91,58 @@ Result: + + +### Using Row Span and Col Span Attribute +With **Row Span** allows a single table cell to span the height of more than one cell or row. + +Example: + +```html + + + + + + + + + + + + + + + +
FirstnameLastnameAge
JillSmith50
EveJackson
+``` + +With **Col Span** allows a single table cell to span the width of more than one cell or column. + +Example: + +```html + + + + + + + + + + + + + + + + + + + +
FirstnameLastnameAge
JillSmith50
EveJackson50
Total: 2 Response
+``` ## Adding/Removing table border The table border width can be increased/decreased using the table border attribute.