Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luismts/b49c307faaa4aea083668eeaa792272f to your computer and use it in GitHub Desktop.
Save luismts/b49c307faaa4aea083668eeaa792272f to your computer and use it in GitHub Desktop.
Force same height on all pricing tables in a row and push footer to bottom
.elementor-widget-price-table, .elementor-widget-price-table>div, .elementor-price-table {
height: 100%;
}
.elementor-price-table {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.elementor-price-table__footer {
margin-top: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment