css grid layout

css grid layout

Professional Development

5 Qs

quiz-placeholder

Similar activities

MEGASYSTEM - TECH

MEGASYSTEM - TECH

Professional Development

10 Qs

CSS Quiz 2

CSS Quiz 2

University - Professional Development

10 Qs

PM FE3 CSS Grid

PM FE3 CSS Grid

Professional Development

10 Qs

Communication using Ms Word

Communication using Ms Word

Professional Development

10 Qs

SQL Commands - SELECT Statements

SQL Commands - SELECT Statements

Professional Development

10 Qs

Vlookup Formula in Excel

Vlookup Formula in Excel

Professional Development

10 Qs

Refresh Excel

Refresh Excel

Professional Development

10 Qs

JMP Quizzard 2.o

JMP Quizzard 2.o

Professional Development

10 Qs

css grid layout

css grid layout

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Ashish Bajpai

Used 74+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is most suitable for a grid layout?

toolbar

form

menu

complex layout, like a newspaper

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which model includes margin, border, padding, and content?

CSS Box model

CSS3 Flexbox Box model

CSS3 Grid Layout model

CSS Grid Template Layout Module

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which model defines structures similar to tables using 2 dimensions?

CSS Box model

CSS3 Flexbox Box model

CSS3 Grid Layout model

CSS float

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are creating a grid layout. What does 1fr mean in the following code?

grid-template-columns: 150px 150px 1fr 1fr;

The first two columns will be two fraction units of the stated width.

The third and fourth columns is 1 fraction unit of the remaining space in the grid.

The second column will be double the stated width.

The second column will be half of the remaining space in the grid.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many columns and rows are defined in the following code?

section {

display: grid;

grid-template-columns: 100px 1fr 1fr 250px;

grid-rows: 50px 1fr 1fr ;

}


section header {

grid-column: 1 / 4;

grid-row: 1;

}


section nav {

grid-column: 1;

grid-row: 2 / 3;

}


section article {

grid-column: 2;

grid-row: 2;

}


section aside {

grid-column: 3;

grid-row: 2;

}


section footer {

grid-column: 1 / 4;

grid-row: 3;

}

1 rows and 2 columns

2 rows and 3 columns

3 rows and 2 columns

3 rows and 4 columns