Last active
October 28, 2024 23:02
-
-
Save kurotori/25c909180c5181c3ebf6beac9a16c394 to your computer and use it in GitHub Desktop.
CSS para Maquetado basado en filas y columnas
This file contains hidden or 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
html, body{ | |
width:100%; | |
height:100%; | |
margin: 0px; | |
} | |
.fila{ | |
position:relative; | |
width:100%; | |
} | |
.columna{ | |
position:relative; | |
float:left; | |
height:100%; | |
} | |
linea 4. "margin" faltan los ":" antes de los px
Corregido. Gracias
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
linea 4. "margin" faltan los ":" antes de los px