Skip to content

Instantly share code, notes, and snippets.

@kurotori
Created September 4, 2024 14:34
Show Gist options
  • Save kurotori/25c909180c5181c3ebf6beac9a16c394 to your computer and use it in GitHub Desktop.
Save kurotori/25c909180c5181c3ebf6beac9a16c394 to your computer and use it in GitHub Desktop.
CSS para Maquetado basado en filas y columnas
html, body{
width:100%;
height:100%;
margin 0px;
}
.fila{
position:relative;
width:100%;
}
.columna{
position:relative;
float:left;
height:100%;
}
@Bamboo-Codec
Copy link

linea 4. "margin" faltan los ":" antes de los px

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment