I have a table in a div, with IDs of table1 and div1.
I want to set the CSS for the cells in the table.
What does the CSS block look like? Like this?:
div1.table1{
}
|
|
I have a I want to set the CSS for the cells in the table. What does the CSS block look like? Like this?:
|
|||
|
|
|
|
The pound means that what follows is an id, in your case table1. the td that follows means that "any td that is a descendant of #table1". Here is a pretty good tutorial. EDIT: for the most efficient selector use |
||||
|
|
|
If you're trying to be as specific as possible:
If not, you could get away with
or even
The later two will style any element with the id of 'table1' (not just an element with the id of 'table1' inside of an element with the id of 'div1' |
||
|
|
EDIT: Corrected - I read too fast - I usually use class instead of ID so I used . out of habit. |
|||
|
|
Assuming html:
Use CSS:
That will let you style the cells. |
||
|
|
|
|
because
In my opinion better way to do it would be ...
You don't really need to create a new id for the table. It kind of depends whether you have more than one table in your div and if the tables are going to be different, but from your question I'd say this would be better. |
||
|
|
|
|
If the IDs are table1 and div1 then you use the # sign to indicate that an "element" is being used (#div1, #table1). if you have marked them as classes, then use a period (.div1, .table1). IDs should be used once per page, classes can be reused over and over. In this instance, all you may require is |
||
|
|
|
|
Any of these will work:
You use spaces to separate the tags. |
||
|
|
|
|
or alternatively, if your table is generated by some server-side script, you can also add CSS classes explicitly to the table rows like
|
||
|
|
|
|
It depends on how precise do you want to be. CSS stands for Cascading Style Sheets so this following rules will cascade down to the most specific one from top to border:
|
||
|
|