Hello, I have a table with a vertical text but I’m not familiar to text-transform and I can’t make my page to display it.
Here’s my css:
table.alt tr td.verticalText {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
transform: rotate(-90deg);
transform-origin: 20% 40%;
height: auto;
width: 2em;
overflow: hidden;
}
HTML: http://sudrap.org/paste/text/393736/
When I test it with jsfiddle or codepen, I have no problem. But when I test it with my browser, the text isn’t displayed.
How can I fix this?