[HTML] To Hide Table Tag Borders, Specify style="border:none;"

Tadashi Shigeoka ·  Fri, September 22, 2017

To hide borders in HTML table tags, simply specify style=“border:none;” and you’re done.

How to Remove Table Borders

Specify border:none for table, tbody, tr, and td respectively, and you’ll be fine.

Sample Code Specifying Style Directly in HTML Tags

Left side content (1) Right side content (1)
Left side content (2) Right side content (2)
Left side content (3) Right side content (3)

The above code renders as follows:

Left side content (1) Right side content (1)
Left side content (2) Right side content (2)
Left side content (3) Right side content (3)

I didn’t expect to receive a request to remove table tag borders in 2017.

That’s all from the Gemba.