Using MaterializeCSS, how can I adjust/remove the vertical spacing between rows?
Example code:
-
2021-02-08 02:16
I did this to make fast space with clear and margin if i need to.
.clear, .clear-10, .clear-15 {
clear: both;
height: 0; overflow: hidden; /* Précaution pour IE 7 */
}
.clear-10 {
margin-bottom: 10px
}
.clear-15 {
margin-bottom: 15px
}