4 div{ display: inline-block; border:
2px solid blue; width:
300px; }
5 block { border:
2px solid green; margin:
0; white-space: normal; display: inline-block; width:
100% }
9 <p>The two divs below should be on the same line, since they are display: inline-block.
</p>
12 <div>This is div one.
</div><div>This is div two.
</div>
15 <p>The two divs below should be on separate lines, since they are wrapped in elements
18 <block><div>This is div one.
</div></block>
19 <block><div>This is div two.
</div></block>