IE7 inline-block bug fix


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

If you're using inline-block on elements that are inline by nature (a, span, etc.), IE7 will not recognize your inline-block. Simply use this IN ADDITION to your CSS to make it work.


Copy this code and paste it in your HTML
  1. zoom: 1;
  2. *display:inline;

Report this snippet


Comments


You need to login to view comments.