I assume you are doing something horrible like HTML email:
<center><table bgcolor="#ff00ff"></table></center>
Answer from Phrogz on Stack OverflowGeeksforGeeks
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"> ...
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
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
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
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
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
Q2. Can I apply border effects using HTML?
Ans: You can use border properties in the
pwskills.com
pwskills.com › blog › web development › border table html – css, without css, style
Border Table Html - CSS, Without CSS, Style
Videos
05:08
HTML - From Zero to Hero #24 - Table Borders - YouTube
05:51
Adding borders to your HTML table - YouTube
08:29
How to add borders to a table (background color and hover animation) ...
03:08
HTML Tables Without Borders - YouTube
04:17
HTML: Tables with borders - YouTube
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 ...
Top answer 1 of 2
15
I assume you are doing something horrible like HTML email:
<center><table bgcolor="#ff00ff"></table></center>
2 of 2
6
<center>
<table border="1" cellspacing="0" cellpadding="0" width="200" align="center">
<tr>
<td background="http://www.yourdomain.com/email/images/background.jpg" align="left">
<!-- Stuff -->
</td>
</tr>
</table>
</center>
- http://www.email-standards.org/
- http://mailchimp.com/resources/guides/email-marketing-field-guide/
- http://www.1stwebdesigner.com/tutorials/ultimate-guide-html-emails/
The background attribute was never valid on table or td. Pretty sure the only thing the HTML 4 specification had background on was body. But I vaguely recall that it worked elsewhere and I think table cells was elsewhere--whether it works in Outlook you'll just have to test. bgcolor was valid all of those places...and is likely to work.
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>…
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.
Call +917738666252
Address Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai