In CSS, can you specify cell borders ??
In CSS, you can specify an id selector that specifies table borders when the id is used:
#para {
position:relative;
border-collapse:collapse;
border-style:ridge;
border-color:"#0000ff";
}
My question: In an id selector, can you specify the borders of individual table cells?
I know you can go in to the HTML for each table, and specify borders for each cell individually.
Thanks, Wayne
PS This is related to my earlier quesiton, Table border question.
|