I need to have Mozilla Firefox specific overflow: hidden property so that it should apply only in Firefox.
Below is the sample code for issue demonstration;
<div class="container">
<div class="hidmeinfirefox">I should be hidden in firefox</div>
</div>
.container {
}
.container .hidmeinfirefox {
height: 1px;
width: 1px;
-moz-overflow: hidden;
}