コントロールの後で、テキストエリアの前に大きなスペース(約300ピクセル)がありますか? Chrome、Firefox、およびIE9で使用できます。私はデフォルトのjWysiwygで試しましたが、同じことをします。 jWysiwygコントロールの後に大きいスペースとテキストエリア
function($) {
$('#news').wysiwyg({
controls: {
strikeThrough : { visible : true },
underline : { visible : true },
separator00 : { visible : false },
justifyLeft : { visible : true },
justifyCenter : { visible : true },
justifyRight : { visible : true },
justifyFull : { visible : true },
separator01 : { visible : true },
indent : { visible : true },
outdent : { visible : true },
separator02 : { visible : true },
subscript : { visible : true },
superscript : { visible : true },
separator03 : { visible : true },
undo : { visible : true },
redo : { visible : true },
separator04 : { visible : true },
insertOrderedList : { visible : true },
insertUnorderedList : { visible : true },
insertHorizontalRule : { visible : true },
separator07 : { visible : true },
cut : { visible : true },
copy : { visible : true },
paste : { visible : true }
},css : "ttwcadm.css"
});
})(jQuery);
そして、私のHTMLは
レンダリングされたhtmlとそれに関連するCSSを投稿してください。上記の情報を含むレイアウトに何が影響しているかを判断する方法はありません。 –
#news { 幅:100%; 高さ:350px; } – user1044141
上記は私が使用しているCSSです。レンダリングされたHTMLをどのように表示するのですか? – user1044141