In the editor, for example when I type
'test'
hit backspace 5 times
'test'
the result will be: '<p>test</p>'.
If I just type 'test', the result will be: 'test'
That is frustrating, because I cannot style it to look the same in the output.
Anybody got a solution??
'test'
hit backspace 5 times
'test'
the result will be: '<p>test</p>'.
If I just type 'test', the result will be: 'test'
That is frustrating, because I cannot style it to look the same in the output.
Anybody got a solution??
RE: Paragraph or not?
Sounds like some IE-feature, since Firefox doesn't behave like this.
As far as i can see it only happens when you completely remove the content of the editor using backspace.
RE: Paragraph or not?
But is it a bug in IE og in the editor.
My problem is, that I can't be sure that this doesn't happen to my users using the editor.
So any idea of a way to style a paragraph not to do a line-break?? This might be a solution to me, but I've tried without any luck.
RE: Paragraph or not?
p { display:inline; }
</style>
RE: Paragraph or not?