Jack
Jack

Reputation: 7547

Tiny mce height different in different browser

I have this code in my JS:

tinyMCE.init({
        width: "100%",
        height: "550",
});

yet the height on the tinymce is seen differently in different browser. Any idea how can we solve this issue?

Upvotes: 1

Views: 38

Answers (1)

Bas Slagter
Bas Slagter

Reputation: 9929

This depends on how big the differences are. But probably it is because each browser has differences in rendering textarea's, buttons etc.

Upvotes: 1

Related Questions