CSS for minimum table height

Whats the css to apply min-height to a table? I’m trying this, which works in the console, but can’t get it to work when included as a css resource in the page:

#Table .nx-skootable {   
      min-height: 250px;
}

If “Table” is the CSS class you added to your table in the advanced tab of its properties,  then you need to use the following syntax in the resource: 

.Table .nx-skootable {    
      min-height: 250px;
}


The “#” sign is used to define ID’s, not classes.  Here is some more detail about the difference:  http://www.htmldog.com/guides/css/intermediate/classid/

Thanks Rob,