The correct answer is: B. initial-scale
The initial-scale property sets the initial scaling factor of the viewport. It is a CSS property that takes a number as its value. The number represents the initial scaling factor of the viewport, which is the ratio of the viewport’s width and height to the width and height of the document.
The initial-scale property can be used to set the initial scaling factor of the viewport to a specific value, or it can be used to set the initial scaling factor of the viewport to a value that is based on the user’s screen size.
For example, the following CSS code sets the initial scaling factor of the viewport to 1.0:
css
html, body {
width: 100%;
height: 100%;
initial-scale: 1.0;
}
The following CSS code sets the initial scaling factor of the viewport to 0.5 on devices with a screen width of less than 600 pixels:
css
html, body {
Subscribe on YouTube