Today I found a really strange bug(?).
I'm running Mac OS X with MAMP and a Virtual box with Win XP.
In my hosts-file on the Mac OS I have added a line for localhost:8888, called "mampserver".
In the hosts-file on the XP I've set 10.0.2.2 (the Mac OS with MAMP) also to "mampserver". With these lines I can run WordPress locally on the MAMP and check it in IE from the virtual XP.
(The reason why I have these host-strings is that WordPress saves GUIDs as http://localhost:8888/the_site/... and if I then on the XP tries to reach this directly from 10.0.2.2 images and other stuff will not be found because "localhost" is 127.0.0.1 on the XP).
Today however, I got a really strange bug using this set up.
If I from the MAMP runs something like:
<div id="menu">
<div class="menu-button">Button 1</div>
<div class="menu-button">Button 2</div>
<div class="menu-button">Button 3</div>
</div>
with the CSS looks something like:
#menu {
width: 900px;
display: table;
}
.menu-button {
display: table-cell;
}
IE (8) renders this wrong, the menu-button:s is listed as rows.
If i take the exact same code, creates a HTML-file on the XP and runs it in IE, it works perfect.
How can the host affect the CSS?!
Anyone who has been having the same or similar troubles?
<li>elements here.. – Mr. Alien Oct 12 '12 at 15:24<!DOCTYPE>declaration – dgarbacz Oct 12 '12 at 16:59