
Instagram |
Twitter |
LinkedIn
Consider the following code:
HTML |
CSS |
 |
 |
What would you see in the browser ?
馃憖 Click here to see the correct answer and explanation
Correct Answer: B |
Explanation |
 |
grid-column and grid-row are the shorthand for grid-column-start + grid-column-end , and grid-row-start + grid-row-end , respectively. These properties determine a grid item鈥檚 location within the grid by referring to specific grid lines. Adicionally, span is the item will span across the provided number of grid tracks. |
Considera el siguiente c贸digo:
HTML |
CSS |
 |
 |
驴Qu茅 ver铆as en el navegador?
馃憖 Haz click aqu铆 para ver la respuesta correcta y su explicaci贸n
Respuesta correcta: B |
Explicaci贸n |
 |
grid-column y grid-row son la abreviatura de grid-column-start + grid-column-end , y grid-row-start + grid-row-end , respectivamente. Estas propiedades determinan la ubicaci贸n de un elemento dentro de la cuadr铆cula haciendo referencia a l铆neas de cuadr铆cula espec铆ficas (Es decir que se cuentan las l铆neas de la cuadr铆cula para ubicar el elemento y no las columnas o filas como tal). Adicionalmente, span nos indica el n煤mero de "cuadritos" que debe ocupar el elemento dentro de la cuadr铆cula. |
Es la B.