What of the following code do you choose to insert at [MISSING CODE] to check device width is 768px or smaller?
(Choose
1 answer)
@media only screen and ([MISSING CODE]) {
body {
background-image: url('img_flowers.jpg');
}
}
A. min-device-width: 768px
B. min-width: 768px
C. device-width: 768px
D. max-device-width: 768px
Q: 20