Skip to main content
Nintex Community Menu Bar
Question

CSS for minimum table height

  • July 9, 2024
  • 2 replies
  • 21 views

Forum|alt.badge.img+8

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;
}

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • July 9, 2024

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/


Forum|alt.badge.img+8

Thanks Rob,