Skip to content

Instantly share code, notes, and snippets.

@nesterchung
Created October 26, 2012 08:05
Show Gist options
  • Save nesterchung/3957550 to your computer and use it in GitHub Desktop.
Save nesterchung/3957550 to your computer and use it in GitHub Desktop.
cross browser inline block
.thirdDiv {
   width:50%;
   display:inline-block;
   display: -moz-inline-stack;  /*Firefox 2*/
   zoom: 1; /* IE hack to trigger **hasLayout** */
   line-height:30px;
   _height:30px;/* IE 6 Height */
   *display: inline; /* IE hack to achieve inline-block behavior */
   /* from http://blog.mozilla.org/webdev/2009/02/20/cross-browser-inline-block/ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment