0

I'm trying to find solution for the following problem:

If I select text in editor and change font with 'Font'-dropdown, this dropdown will show correct font when I step on edited part of the text in the editor. But if I haven't yet changed font, then 'Font'-dropdown doesn't display actual font. And there is the same problem with a 'Size' dropdown.

If it's possible, help me please at least to determine the direction in which I have to dig to resolve this annoying problem.

Thank you for your time.

before editing: http://farm9.staticflickr.com/8440/8019979666_cac44116c6_b.jpg

after editing: http://farm9.staticflickr.com/8170/8019969770_d7e1456f86_z.jpg

4

1 に答える 1

1

編集が行われる前の時点では、実際にはユーザーが入力したフォントやサイズの定義がないため、これは予想どおりです。基本的には任意のフォントで、コンテンツを表示しているページのCSSスタイルシートで定義できます。テキストがエディターにある場合、content.cssエディターのによって指定されます。エディターはデフォルトでフォントを使用します。

font-family: Arial, Verdana, sans-serif;

ただし、多くの場合、エディターの実際の出力は同じスタイルシートを使用しないため、フォントはブラウザーのデフォルトであるか、エディターからのコンテンツをホストするページのスタイルシートで定義されているものである可能性があります。

ドロップダウンは、ユーザーがテキスト用に選択したフォントを指定します。ユーザーが何も選択せず、デフォルト値のままにしておくと、ボックスには何も表示されません:)

于 2012-09-25T08:05:07.457 に答える