I am currently working on a web application, and I have encountered an issue with my CSS file.
body.login {
background: url('abc.jpg')
}
body.loginSuccess {
background: url('xyz.jpg')
}
When testing in Chrome, everything appears to be functioning correctly. The login page displays the image abc, while the loginSuccess page displays xyz.
However, when testing in Internet Explorer, both pages display the same image abc. Why is this happening?