css - Is -moz-inline-stack; not being supported by Firefox anymore? -


is wrong -moz-inline-stack; ?

i've been using cross browser inline-block , had no issues firefox facing display issue on browser.

once removed -moz-inline-stack; , used display: inline-block; worked fine.

is firefox not supporting -moz-inline-stack; anymore?

this didn't work in firefox:

div {         display: inline-block;         display: -moz-inline-stack;         *display: inline;         zoom: 1;     } 

however worked on firefox:

div {             display: inline-block;             *display: inline;             zoom: 1;         } 


Comments