Sometimes when we designing a website we need to use the font "Arial Narrow". This usually supported by PC and Mac across various major browsers. However it does not render correctly under Firefox without "font-stretch: condensed; ".

 

Below is an example make it work:

p{ font-family: 'Arial Narrow', Arial, Helvetica, sans-serif; font-stretch: condensed; }