What is the initial display property of <div>s?</div>
Block
What is the difference between display: none and visibility: hidden?
display: none hides an element from the page. You can still see it in the inspector, while visibility: hidden removes the element completely
What is the difference between the block, inline block, and inline display properties?
block causes causes inline level elements to start on a new line, causes a block level element to flow like an inline element though it keeps certain properties of a block level element and inline causes block level elements to be on the same line.