D 276 / D276 Pre- Assessment V1 (Latest Update 2025 / 2026) Web Development Foundations | Questions and Answers | Grade A | 100% Correct - WGU
Question:
Which CSS properties are used to specify the amount of space between grid columns and rows?
- column-gap and row-gap
- grid-row-start and grid-row-end
- grid-area and grid-template-area
- grid-template-columns and grid-template-rows
Answer:
column-gap and row-gap
- / 4
Question:
Which set of CSS rules will create a fluid layout?
body {
margin: auto;
border: solid 1px gray;
} main {
padding-left: 35%;
border: solid 1px gray;
} aside {
width: 30%;
float: left;
border: solid 1px gray;
}
body {
width: 960px;
margin: auto;
border: solid 1px gray;
} main { 2 / 4
width: 670px;
padding-left: 290px;
border: solid 1px gray;
} aside {
width: 285px;
float: left;
border: solid 1px gray;
}
body {
width: 100%;
margin: auto;
border: solid 1px gray;
} main {
width: 670px;
padding-left: 290px;
border: solid 1px gray;
} aside {
width: 285px;
float: left; 3 / 4
border: solid 1px gray;
}
body {
width: 100%;
margin: auto;
border: solid 1px gray;
} main {
width: 70%;
padding-left: 290px;
border: solid 1px gray;
} aside {
width: 285px;
float: left;
border: solid 1px gray;
}
body {
width: 960px;
margin: auto;
border: solid 1px gray;
- / 4