Here is a snippet of my media query code:
@media screen and (max-width: 1200px) {
.changePicture {
width: 15%;
float: left;
margin-top: 5%;
margin-left: 5%;
margin-right: 0;
}
}
.changePicture {
width: 15%;
margin-top: 5%;
margin-right: 20%;
float: right;
}
I am facing an issue where the media query does not take effect when the screen size falls below 1200px.