You would setup a CSS property for psuedo-class selector
#main_table table
#main_table would address the table with the "main_table" id and the table would be pointing to all the table tags that are children of the element with the "main_table" id.
The space creates a hierarchy structure. For instance you could target the links ('a' tags) in those tables by using the selector
#main_table table a
Abraham