Created
February 20, 2019 11:20
-
-
Save joseacat/e54582ce99de1e6a1c407180b797766a to your computer and use it in GitHub Desktop.
Estilos listado CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.listado-grid{ | |
display: grid; | |
grid-template-columns: repeat(4, minmax(auto, 1fr)); | |
grid-gap: 20px; | |
} | |
.listado-block{ | |
display: block; | |
} | |
.listado-oculto{ | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment