代码之家  ›  专栏  ›  技术社区  ›  AngryHacker

fckeditor 2.6x似乎在底部被铬合金切断

  •  0
  • AngryHacker  · 技术社区  · 15 年前

    fckeditor的底部似乎被切断了——边界看不到。这只发生在谷歌浏览器中。IE和Firefox似乎没问题。这是fckeditor控件,几乎没有任何自定义。

    alt text

    有什么办法解决这个问题吗?

    2 回复  |  直到 14 年前
        1
  •  2
  •   ZoogieZork    15 年前

    似乎是fckeditor 2.6.5中的已知错误。Dravis在Keditor论坛上发布了一个补丁来修正高度计算:

    http://cksource.com/forums/viewtopic.php?p=41296#p41296

    (从链接复制,以防论坛关闭):

    在fckeditor.html中,我将第286行改为:

    eInnerElement.style.height = ( oCell.scrollHeight - 2 ) + 'px' ;
    

    对此:

    if ( FCKBrowserInfo.IsSafari )
       eInnerElement.style.height = ( oCell.scrollHeight - 19 ) + 'px' ;
    else
       eInnerElement.style.height = ( oCell.scrollHeight - 2 ) + 'px' ;
    
        2
  •  0
  •   Arne Stephensson    14 年前

    我经常在chrome上看到这个,即使是在最简单的网页上。chrome无法呈现底部100px左右,显示为白色或显示另一个选项卡的内容。这是一张有人发布的截图: http://i46.tinypic.com/21l061k.jpg

    仅供参考,我运行的是最新版本的chrome,因此可能有一个持续的问题。