2014-11-24 2 views
0

http://jsfiddle.net/manojivasan/hdr28m78/как повернуть текст Особенно в ie8?

мне нужен текст, который будет вращаться, Особенно мне это нужно в IE8, кроме IE8 других браузеров я получаю, может ли один помочь мне в этом вопросе

.Tips a { 
    color: #82C739; 
    text-decoration: none; 
    } 
    .Tips { 
    color: blue; 
    font-size: 10px; 
    width: 200px; 
    line-height: 12px; 
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-7); 
    /*-ms-filter:filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-7);*/ 
    } 

ответ

0

Вы можете использовать этот веб-сайт для преобразования кодов вращения css3 в IE Matrix.

http://www.useragentman.com/IETransformsTranslator/

#transformedObject {

/* IE8+ - must be on one line, unfortunately */ 
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.992546151641322, M12=0.12186934340514763, M21=-0.12186934340514763, M22=0.992546151641322, SizingMethod='auto expand')"; 

/* IE6 and 7 */ 
filter: progid:DXImageTransform.Microsoft.Matrix(
      M11=0.992546151641322, 
      M12=0.12186934340514763, 
      M21=-0.12186934340514763, 
      M22=0.992546151641322, 
      SizingMethod='auto expand'); 


/* 
    * To make the transform-origin be the middle of 
    * the object. Note: These numbers 
    * are approximations. For more accurate results, 
    * use Internet Explorer with this tool. 
    */ 
margin-left: -6px; 
margin-top: -16px; 

}

Смежные вопросы