Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Say I have the following code

<style type="text/css" media="all">
  span, ul, ul li {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0;
    list-style: none;
  }   
</style>
<span>i would want</span>
<ul>
  <li>this</li>
  <li>on</li>
  <li>one line.</li>
</ul>

I want this to display inline in IE 8. Everywhere I have read everything says this should work, IE 8 supports inline-block. However after a morning of trying I cant get the above to line up. I know I could float it, but with the other elements on my page (not shown here) I would need to use a 'clearfix' which is more mark up. I only need to target IE 8 and would love to know why inline block doesn't work for me when apparently its supported. The above code does what I want when viewed in google chrome.

share|improve this question

6 Answers

up vote 16 down vote accepted

I'm guessing you haven't declared a doctype. Try placing this on the first line, before the html tag:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

The code you pasted works in IE8 with that doctype.

share|improve this answer
11  
<!DOCTYPE html> suits too – Sergey Ratnikov Feb 2 '12 at 10:32
I love you, this saved me a lot of IE-ache! – Iazel Mar 26 at 2:51

Not all IE8 versions seem to work equally. I found that the given code, even with a DOCTYPE, does not work in IE 8.0.6001.18702, which is an early version.

However, the workaround for lower IE versions did its job on that particular IE 8 as well:

<!--[if lt IE 8]>
<style type="text/css">
    li { display: inline !imporant; }
</style>   
<![endif]-->
share|improve this answer
This worked perfectly, I only added !important to override, it seems like inline is actually inline-block in IE. Thank You! – Unavailable Apr 5 '12 at 12:46
Randomly stumbled across this, worked for me, inline is indeed inline-block. Thanks – Sam Jul 17 '12 at 14:49
Cool, this worked for me, I have the same problem, Windows 7 IE 8 and inline-block does not work – Jorge Jul 25 '12 at 18:29
Exactly, the same for me! I have exactly the same version of IE and the DOCTYPE itself doesn't work. – Tomas May 9 at 15:49
4  
This only happens when IE8 is in Compatibility View, which is an IE7 emulation. It's not a problem of differing IE8 versions, but a problem of improper rendering modes. It's not surprising that this should happen even if a DOCTYPE is used since IE7 and earlier have always had this problem even if a DOCTYPE was used anyway. Furthermore, 8.0.6001.18702 is the RTM, not an early version, and even that isn't relevant because display: inline-block support was already complete starting from the first beta. The correct solution to this is <meta http-equiv="X-UA-Compatible" content="IE=edge"> – BoltClock May 9 at 16:24
show 1 more comment

You can set margin-right:1px

worked for me pretty well.

share|improve this answer
This is by far the best option out of all the answers. Great tip! – Abe Petrillo Nov 1 '12 at 19:05
What the...?? I can't believe this works! – Connell Watkins Jan 18 at 10:37
Link is broken. – Yisela May 1 at 1:26
removed the broken link (compsoft.co.uk/Blog/2009/11/…) They seem to change their website and cannot find the post anymore. – Koray Balci May 7 at 13:41

IE8 will treat it as a block level element unless you use float.

.divInlineBlock
{
   display: inline-block;
   float: left;
}   
share|improve this answer

For IE8 - you can add a specific declaration:

display: inline-table;

which works great.

share|improve this answer

Note that IE8 will act like IE7 if you are viewing an intranet site, which can happen as you develop! See this StackOverflow question:

IE8 Rendering as IE7 By Default?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.