Question #111

Author: admin
tags: HTML   CSS   frontend (web)  
<div class="block1">
  block 1
</div>

<div class="block2">
  block 2
</div>
.block1 {
  border: 1px solid black;
}
.block2 {
  border: 1px solid black;
  margin-block-start: 50px;
  margin-top: 10px;  
}
What is the distance between the two blocks?
0px
10px
40px
50px
60px
If the margin-block-start and margin-top properties are used simultaneously, then the margin-top property takes precedence.
Rate the difficulty of the question:
easyhard