Inline-block not supported in FF 2.0


/ Published in: CSS
Save to your folder(s)

inline-block isn't supported in Firefox 2.0. To make it work in FF 2, you have to put dipslay: -moz-inline-stack;


Copy this code and paste it in your HTML
  1. display: -moz-inline-stack;
  2. display: inline-block;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.