Here is a snippet of my CSS code for the media query:
@media (min-width: 320px) and (max-width: 480px) {
.vertical-bar{
display: none;
}
.fa-bars{
position: fixed;
left:280px;
top: 20px;
}
.fa-bars.animate{
top: -71px;
}
.fa-bars.sticky{
top: 25px;
}
}
The code works fine on both mobile chrome and Firefox but not on opera. I do not know why. Is there any special keyword for opera I'm missing to include in my CSS code? Please help me.