Hello everyone.
I am currently learning CSS. I created a style sheet for my web site, and one of the things I used CSS for was my table.
The CSS code created a border around my table. However, it didn't create a border around each individual cell. How can I accomplish this?
Here is my CSS code. The first one applies to the table heading, but I don't think that's relevant to my problem. Also, crew was just the name of my table. That's not important to my problem.
Code:
th {
font-weight:bold;
padding:5px;
font-size:25pt;
color:red;
text-decoration:blink;
font-family:Jokerman}
table.Crew {
border-style:outset;
border-width:5px solid;
border-color:gray}
EDIT: Never mind. I figured it out. You just need to use a td CSS.
Can a Wrox moderator delete this thread, since it's of no use?