saving . . . saved Can't apply border into my Table has been deleted. Can't apply border into my Table has been hidden .
Can't apply border into my Table
Title
Question
I've linked the css file in my html file. The CSS file reads :
body {  
 background-color:Aquamarine; 
 text-align:left;
 }
table, th, tr, td
{border: 50px red;
 width:10px;
 border-spacing: 20px;
 padding: 2px
}
Though, the background colour is changed, but the border is not being applied. Please help.


HTML Tables-in-HTML 06-07 min 10-20 sec 04-07-25, 6:29 p.m. Sandip@001

Answers:

table, th, tr, td {
  border: 50px red;
}
border syntax is wrong it has to be style properties like bold,dash,etc..
correct code below
table, th, tr, td {
  border: 2px solid red;   /* Fixed border syntax */


05-07-25, 8:26 p.m. ankitshr6688@gmail.com
Thank you so much
06-07-25, 9:48 a.m. Sandip@001

Login to add comment


Log-in to answer to this question.