Please review my Fiddle Sample.
Click on a calendar day with an event (orange square).
You'll notice that the date box, is at the bottom of the window.
In the stylesheet, there's a snippet like this...
.calendar *{
-moz-box-sizing:border-box;
box-sizing:border-box;
vertical align: top;
behavior: url(pie/PIE.htc);
}
...the vertical-align: top;
should bring that box to the top of the window, but it doesn't.
If you add vertical-align: top;
to the stylesheet in Chrome, then it works fine.
Not sure why this is... Thoughts?