Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Vertical text not appearing

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #186018
    onurcan1977
    Participant

    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?

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.