Kizspy | Question: 38 (Choose 1 answer)
Choose the right statement about the code below:@media only screen and (min-width: 768px) {
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}.col-6 {width: 50%;}
.col-7 {width: 58.33%;}.col-8 {width: 66.66%;}
.col-9 {width: 75%;}.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}
<div class="row">
<div class="col-6">The city
</div>
<div class="col-6">
Chania is the capital of the Chania region on the island of Crete.
The city can be divided in two parts, the old town and the modern city.
</div>
</div>
A. When the screen (browser window) gets smaller than 768px, each child div should have a width of 50%
B. When the screen (browser window) gets greater than 768px, each child div should have a width of 50%
C. Each column should have a width of 100% for any screen wide
D. When the screen (browser window) or mobile gets smaller than 768px, each column should have a width of 50%
FUOV