Trying to make some text vertical, here is the CSS I'm using:
h2.verticle{
color:#1a6455;
border:0px solid red;
writing-mode:tb-rl;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform:rotate(90deg);
-moz-transform:rotate(90deg);
-o-transform: rotate(90deg);
white-space:nowrap;
display:block;
bottom:0;
width:20px;
height:20px;
font-size:20px;
font-weight:normal;
border:none !important;}
Works in all browsers except for IE. Code source:
The site linked works fine on the same version of IE, any thoughts on why it's not working?