Hide div in materialize css

Asked

Viewed 510 times

1

Does anyone here use materialize css ? know if there is any way to hide the column of a table through a css class ? in bootstrap have to do this using that class="Visible-Xs" went in Docs and did not find... would have as ? or I will have to write this rule ?

http://materializecss.com/grid.html

1 answer

0

The Materializecss has the following classes to help you hide or show some element according to breakpoints:

.hide   // Oculta em todos os breakpoints
.hide-on-small-only // Oculta no breakpoint small
.hide-on-med-only   // Oculta apenas no breakpoint medium
.hide-on-med-and-down  //Oculta no breakpoint medium e abaixo dele
.hide-on-med-and-up  // Oculta no breakpoint medium e acima dele
.hide-on-large-only // Oculta apenas no breakpoint large
.show-on-small  // Exibe no breakpoint small
.show-on-medium // Exibe no breakpoint medium
.show-on-large  // Exibe no breakpoint large
.show-on-medium-and-up  // Exibe no breakpoint a partir do medium
.show-on-medium-and-down  // Exibe no breakpoint abaixo do medium

http://materializecss.com/helpers.html

Browser other questions tagged

You are not signed in. Login or sign up in order to post.