I would like to target some specific CSS rules for Firefox on Mobile Device in Portrait Mode Only
I Tried this but it doesn't work:
/* for firefox on mobile portrait only */
@-moz-document url-prefix() {
@media only screen and (max-width: 480px) {
.gallery_legend {
padding-bottom: 26px;
}
.slide-nav {
bottom: 11px;
}
}
}