This is a weird problem. I have login screen on a site I am building, on which there is a series of flags that enable you to set the language, when you hover over a flag it displays the name of the language in a CSS only tool tip.
This works fine, except when the language is Korean or Chinese, where the text is arranged vertically like this:

I am not sure that this is a huge issue as I think both of these languages can be read vertically or horizontally. However I would like to know why it is happening, in fact it happens in IE9, IE7, Chrome and Firefox. So I think it might be meant to be like that.
HOWEVER! It only seems to happen when the position is set to absolute. Here is my HTML:
<span class="tooltip">
<a href="/Login/Index?Language_Id=2">
<img alt="한국의" class="Language_Flag" src="/Content/images/flags/kor.png" />
</a>
<span class="tip_basic">
한국의
</span>
</span>
and the CSS:
span.tooltip
{
position: relative;
}
span.tooltip .tip_basic
{
display: none;
position: absolute;
background-color: rgba(255, 255, 255, 0.7);
border: 3px solid #224E8B;
padding: 10px;
border-radius: 10px;
-webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.5);
box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.5);
}
span.tooltip:hover span.tip_basic
{
display: block;
position: absolute;
left: 1em;
top: 2em;
z-index: 99;
margin-left: 0;
}
Now the bit that confuses me is that if I remove the position: absolute; bits the text reverts to displaying normally (messes up my tooltips though!) like this:

Can anyone explain to me why it does this and if there is a way to stop it?