Вопрос

In Firefox using scale transform causes the cursor to stop blinking, or hides it or makes it point to the wrong character.

Here is the fiddle:

http://jsfiddle.net/7bNU4/4/

<div tabindex="1" class="trans">    
<div contenteditable="true">
   <span style="font-size: 73px; font-family: Calibri (Headings);
    text-align: center; color: Black;" class="TxtPhLineTxt">S</span>
</div>

CSS:

.trans { 
    height: 2.1in; width: 11.5in; 
    cursor: text; 
    transform: scale(0.461111);
    transform-origin: 0px 0px 0px; 
}

So, is there any solution to above problem?

Это было полезно?

Решение

This is a bug in firefox, which has not been resolved yet :

https://bugzilla.mozilla.org/show_bug.cgi?id=865930

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top