Question #191

Author: admin
tags: CSS   frontend (web)  
<div class="block1">Block 1</div>
<div class="block2">Block 2</div>
.block1 {
  width: 200px;
  inline-size: 400px;
}

.block2 {
  inline-size: 400px;
  width: 200px;
}
What is the final width of block1? And block2?
block1 - 200px, block2 - 200px
block1 - 200px, block2 - 400px
block1 - 400px, block2 - 200px
block1 - 400px, block2 - 400px
Rate the difficulty of the question:
easyhard