In the following code-snippet, what is the width of the div when we hover it?

div {
width: 100px;
}
div:hover {
width: 200px;
}
100px

200px

50px

None of the options

The width of the div when we hover it would be 200px.

When the div is hovered, the width of the div is changed to 200px. So the correct answer is 200px.

The width of the div when we hover it is 200px. When we hover over the div, the CSS rule "div:hover" is applied, which changes the width property to 200px. To get the answer, you need to identify the CSS rule that is applied when hovering over the div.