html - -moz-overflow: hidden not working in firefox -
i need have mozilla firefox specific overflow: hidden property should apply in firefox.
below sample code issue demonstration;
<div class="container"> <div class="hidmeinfirefox">i should hidden in firefox</div> </div> .container { } .container .hidmeinfirefox { height: 1px; width: 1px; -moz-overflow: hidden; }
pure css solution :
@-moz-document url-prefix() { .container .hidmeinfirefox { overflow: hidden; } } .container .hidmeinfirefox { height: 1px; width: 1px; }
Comments
Post a Comment