31.
Which of the following CSS3 property specifies how the contents of a replaced element should be fitted to the box established by its used height and width?

36.
What should be written in the blank of the code for resizing elements in Responsive Web Design with Transitions
Code:
body { background-image: url(fog.jpg); background-size: cover;
background-repeat: no-repeat; color: #fff; font-family: Avenir, Arial, sans-serif;
}
h1 { font-family: 'Calluna Sans', Arial, sans-serif; text-align: center;
font-size: 10rem; margin: 8rem auto;
}
h1 { font-family: 'Calluna Sans', Arial, sans-serif;
text-align: center; font-size: 10rem; margin: 8rem auto; transition: 1s font-size linear;
}
______________ and (max-width: 1100px) {
h1 { font-size: 8rem; }

37.
Which of the following CSS3 property specifies the intrinsic resolution of all raster images used in/on the element?

38.
Which of the following code set the webpage correctly displayed on a device?