diff --git a/guide/english/html/tables/index.md b/guide/english/html/tables/index.md index 9f469e3edf..2bd69baa65 100644 --- a/guide/english/html/tables/index.md +++ b/guide/english/html/tables/index.md @@ -168,6 +168,13 @@ Result: +The table can also be applied a border with the css as follows +```html +table, th, td { + border: 1px solid black; +} +``` + #### More Information: * [MDN - table](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table) * [YouTube - HTML Tables Tutorial](https://www.youtube.com/watch?v=BczLWImAmBk)