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
1 answer
The width of the div when we hover it would be 200px.