Search code examples
javascripthtmlcsstimeline

horizontal timeline transformation


can someone help me how to transform this vertical timeline to horizontal: http://jsfiddle.net/yinnette/XdQ5Y/

<div class="timeline">

thanks a lot !


Solution

  • if you just need to make horizontal from this you can use rule

    .timeline{
      transform: rotate(-90deg);
      -webkit-transform: rotate(-90deg);/** Chrome & Safari **/
      -o-transform: rotate(-90deg); /** Opera **/
      -moz-transform: rotate(-90deg); /** Firefox **/
    }
    

    http://jsfiddle.net/XdQ5Y/348/