I assume you are doing something horrible like HTML email:

<center><table bgcolor="#ff00ff"></table></center>
Answer from Phrogz on Stack Overflow
🌐
GeeksforGeeks
geeksforgeeks.org › html › how-to-create-table-in-html-with-border-without-css
How to Create Table in HTML with Border without CSS ? - GeeksforGeeks
June 12, 2025 - To add borders to the table without using CSS, we can use the border attribute directly in the <table> tag. The border attribute specifies the width of the border in pixels. Here's how you can add a border to the entire table: <table border="1"> ...
🌐
PW Skills
pwskills.com › blog › web development › border table html – css, without css, style
Border Table Html - CSS, Without CSS, Style
November 4, 2025 - You can adjust the thickness of your border by providing different values under the <table tag. Ans: You can use border properties in the <table tag to apply borders around your table without using the CSS style elements.
Discussions

html - table formatting without css - Stack Overflow
I have an editor which strips out ... styles without using a css ... @TJCrowder Perhaps corporate HTML email spam, accounting for old versions of Outlook. Edit: @user544079 That's a terrible reason! ... T.J. Crowder – T.J. Crowder · 2011-05-02 20:41:46 +00:00 Commented May 2, 2011 at 20:41 ... Sign up to request clarification or add additional context in comments. ... More on stackoverflow.com
🌐 stackoverflow.com
Getting a table to format properly without CSS (HTML mail)
I’m trying to put an image into an email that has different clickable areas and my only idea was to create a table in Photoshop using slices, but when I export the code and paste it into my email builder, I get some weird spacing results. This is how I want it to look… More on forum.freecodecamp.org
🌐 forum.freecodecamp.org
0
0
April 18, 2024
How can I make a blank table cell without borders with the table border not enclosing it?
Remove the border="1" from the table element and add a style to the td and th elements td, th { border: 1px solid black; } Lastly, add a class to that top-left td cell you want to "hide" and style the class. and td.hide { border: none; } There are probably a dozen other ways to do that. CSS is pretty flexible. JSFiddle More on reddit.com
🌐 r/webdev
2
1
February 7, 2021
How to create only the outline border in html table without using any CSS? - Stack Overflow
I expect the table border to be only outside but it's both inside and outside like the regular table border.Is there any way i can do this without using any CSS? ... If you can't use CSS, you should remove the css tag.. ... You would have to use styling directly in the HTML of every single ... More on stackoverflow.com
🌐 stackoverflow.com
People also ask

Q1. What is the border in HTML?
Ans: Border Table HTML is used to specify a border around your table cells. You can adjust the thickness of your border by providing different values under the
🌐
pwskills.com
pwskills.com › blog › web development › border table html – css, without css, style
Border Table Html - CSS, Without CSS, Style
Q3. How do I add borders in HTML?
Ans: You can use the CSS Style properties to apply different themed borders such as dashed, collapsed, solid, double, dotted in your HTML structure.
🌐
pwskills.com
pwskills.com › blog › web development › border table html – css, without css, style
Border Table Html - CSS, Without CSS, Style
🌐
Kompx
kompx.com › en › html-table-borders-without-css.htm
HTML table borders without CSS
It is not exactly handling borders themselves, but rather imitating doing it by exploiting the cellspacing and bgcolor attributes. Nowadays, as with HTML centering, this method is perfectly usable, even if CSS border styling is more convenient in most cases. Bgcolor attribute of table tag is ...
🌐
Medium
medium.com › beyond-agile-leadership › achieve-stylish-html-tables-without-css-border-techniques-and-examples-3e7ff42e1aff
Achieve Stylish HTML Tables without CSS: Border Techniques and Examples | by Sam Turquoise | Beyond Agile Leadership | Medium
July 27, 2024 - By adding border="1", you give your table a basic border. It’s a bit like going from wearing pajamas to a smart-casual outfit. <table border="1"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Data 1</td> <td>Data…
🌐
Medium
medium.com › @wilfredcy › how-to-add-html-table-borders-without-css-e50168e3bb52
How to Add HTML Table Borders Without CSS | by Wilfred Chong | Medium
November 15, 2025 - How to Add HTML Table Borders Without CSS You can add borders to HTML tables using built-in HTML attributes. No CSS required. Here's how to do it. Using the Border Attribute The simplest method is …
Find elsewhere
🌐
HTML Tables
htmltables.io › blog › how-to-create-an-html-table-with-no-border
How to Create an HTML Table With No Border
April 16, 2024 - Here's how: ... By setting the border property to none for <td> and <th> elements, you remove the borders between cells while keeping the border around the entire table intact. Creating an HTML table with no border is simple and offers a clean ...
🌐
Quora
quora.com › How-do-I-collapse-a-border-without-CSS-in-HTML
How to collapse a border without CSS in HTML - Quora
To collapse boarder you need CSS with HTML. HTML (Hypertext Markup Language) is a markup language which is used to structure content, layout creation and display that resource/content through the browser and not to control its visu...
🌐
Quora
quora.com › How-can-you-border-without-styling-in-CSS
How to border without styling in CSS - Quora
Answer (1 of 3): Check out the code of this table and study it well ! [code]
🌐
YouTube
youtube.com › watch
HTML Tutorial #12 - HTML Table Borders | 2 Ways To Specify HTML Table Borders - YouTube
HTML Tutorial #12 - HTML Table Borders2 Ways To Specify HTML Table Borders#careerandtechhq#html
Published   September 20, 2023
Views   289
🌐
Medium
frontendinterviewquestions.medium.com › html-table-border-without-css-4dafaebd54d0
HTML table border without CSS. For more questions and answers visit… | by Pravin M | Medium
August 30, 2024 - The border attribute is used to define the thickness of the table’s border. The value is specified in pixels. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HTML Table Border Example</title> </head> <body> <table border="2"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> </tr> <tr> <td>Data 3</td> <td>Data 4</td> </tr>…
🌐
freeCodeCamp
forum.freecodecamp.org › html-css
Getting a table to format properly without CSS (HTML mail) - HTML-CSS - The freeCodeCamp Forum
April 18, 2024 - I’m trying to put an image into an email that has different clickable areas and my only idea was to create a table in Photoshop using slices, but when I export the code and paste it into my email builder, I get some weird spacing results. This is how I want it to look…
🌐
HTML.com
html.com › attributes › table-border
Table Border: The Old (HTML) And New (CSS) Code Compared »
September 26, 2019 - The table border attribute could accept two values: 0 for no borders and 1 to display borders around table cells. Simple as that. However, the attribute has been deprecated in favor of table borders styled with CSS.
🌐
Reddit
reddit.com › r/webdev › how can i make a blank table cell without borders with the table border not enclosing it?
r/webdev on Reddit: How can I make a blank table cell without borders with the table border not enclosing it?
February 7, 2021 -

How can I make the first table cell to have no borders?

<!DOCTYPE html>
<html>
<head>
   <title>Table Span</title>
   <style>
   
      table {
         border-collapse: collapse;
         }
         
   </style>
   
</head>
<body>

   <table border="1">
   
      <caption>Table</caption>
      
      <tr>
         <td> <!--Cut cell--></td>
         <th>Table header</th>
         <th>Table header</th>
         <th>Table header</th>
      </tr>
      
      <tr>
         <th>Table header</th>
         <td rowspan="2"> <center> Rowspan is vertical </center> </td>
         <td rowspan="2" colspan="2"> <center> Using rowspan and colspan together </center> </td>
      </tr>
      
      <tr>
         <th>Table header</th>
         <!--Empty horizontal table line to make up for rowspans above-->
      </tr>
      
      <tr>
         <th>Table header</th>
         <td colspan="3"> <center> Colspan is horizontal </center> </td>
      </tr>
      
   </table>
   
</body>
</html>

Here is the preview.

🌐
W3Schools
w3schools.com › html › html_table_borders.asp
HTML Table Borders
HTML tables can have borders of different styles and shapes. To add a border, use the CSS border property on table, th, and td elements:
🌐
W3C
w3.org › Style › Tables › examples.html
Examples of table borders and rules
Corresponds to HTML3 rule=all, border=1. ... The second example from the HTML3 spec. (interpreted from the ASCII graphics). table { border-top: double; border-bottom: double; border-right: blank } thead, tbody, tfoot { border-top: solid; border-bottom: solid } colgroup { border-right: solid }
🌐
EDUCBA
educba.com › home › software development › software development tutorials › html tutorial › table without border in html
Table Without Border in HTML | 2 Types of Table Without Border in HTML
March 27, 2023 - We can remove the border from the nested table by removing the border-related styling. Zebra Striping tables refers to the tables having different color in the alternate rows. Different color in the alternate rows makes easier in distinguishing the rows from each other. It is easier to see the particular row of the table by the color. Placing styling on the table tags can also be added using jQuery. An example is the basic one; here the HTML tag table creates a tabular design & after that, styling added to make this table as a Zebra Striping table.
Address   Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai
🌐
Codedragontech
codedragontech.com › home › easy ways to style html tables (and remove the borders)
Easy Ways to Style HTML Tables (and remove the borders) - Create With Code Dragon
November 13, 2022 - Note: you can use “border: none;” or “border: 0px;”. Either way it results in the outside border being removed from your table. Here is the CSS for removing ALL borders from your table, then adding a gradient background to the entire ...