FCKEditor 2.6x似乎在Chrome底部被切断了

时间:2010-01-22 08:00:36

标签: google-chrome border fckeditor

FCKEditor的底部似乎被切断了 - 没有看到边界。这只发生在Google Chrome中。 IE和Firefox似乎没问题。这是FCKEditor控件,几乎没有任何自定义。

alt text

有没有解决这个问题?

2 个答案:

答案 0 :(得分:2)

似乎是FCKEditor 2.6.5中的已知错误。 CKEditor论坛中的Dravis发布了一个补丁来修复高度计算:

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' ;

答案 1 :(得分:0)

我在Chrome上看到了很多,即使在最简单的网页上也是如此。 Chrome无法呈现底部100px左右,将其显示为白色或显示另一个标签的内容。这是某人发布的截图: http://i46.tinypic.com/21l061k.jpg

仅供参考我正在运行最新版本的Chrome,因此可能存在问题。