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
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 */
Login to add comment