How does the page render? For each statement in the table, select Yes if the behavior is described. Select No if it is not. Make only one selection in each column.
Answer:
Explanation:
4 Comments on “How does the page render?”
bossovsays:
I don’t understand why the last two options are supposed to be true. Any explanation? I would have selected No for all of them.
This question is so incomplete, it’s hard to say how the page will render! Are we to assume that there are s named “blueBox” and “content”? The code indicates that “blueBox” is a class, not a name.
0
0
stenlysays:
there is no style named content within css nor within grid cell. So anything not specified within css definition block is empty named definition (assume your content as empty style).
1. .text is applied for 1×1 col/row so “content” wont flow around .blueBox just because this cell is taken already
2. …this is obvious
3. .content does not exist within css, everything in the grid can be named as .content (css definition is empty) and will consume the rest of the grid space
I don’t understand why the last two options are supposed to be true. Any explanation? I would have selected No for all of them.
0
0
you have grid(container) with 3 column and 3 row
you have first cell(blueBox) with position in 2 row and 2 col
you have second cell(text) in 1 col 1 row with width 3col and height 3row
https://msdn.microsoft.com/en-us/en-en/library/hh673533(v=vs.85).aspx
0
0
This question is so incomplete, it’s hard to say how the page will render! Are we to assume that there are s named “blueBox” and “content”? The code indicates that “blueBox” is a class, not a name.
0
0
there is no style named content within css nor within grid cell. So anything not specified within css definition block is empty named definition (assume your content as empty style).
1. .text is applied for 1×1 col/row so “content” wont flow around .blueBox just because this cell is taken already
2. …this is obvious
3. .content does not exist within css, everything in the grid can be named as .content (css definition is empty) and will consume the rest of the grid space
0
0