I have many html tables and one of these are named as "table1". I want to give style to this table only. I used:
#table1 tr,th,td
{
border: 5px solid black;
}
But when it executed, other table's td , tr, th style is setted same as #table1 's style.
How Can I give Style to particular table's td , tr, th only????