Question

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

Answers

There are no human answers yet.
Answered by GPT 3.5
The width of the div when we hover it would be 200px.