I'm trying out v1.6 and v2.0 beta on XP sp1 with IE 6 sp1. I tried Firebird and it works fine. Just IE6 has problems.
With both I get double spaced text when I hit enter to go to a new line.
When I pasted in from Excel everything was formated perfectly. Am I missing something? Is there bug in IE6sp1?
With both I get double spaced text when I hit enter to go to a new line.
When I pasted in from Excel everything was formated perfectly. Am I missing something? Is there bug in IE6sp1?
RE: Double spaced, IE 6 sp1 and IE 5
RE: Double spaced, IE 6 sp1
IE has never been known for its compliance to the standards, if that's what you mean.
You'll get 'double spaced' text because its interpreted as a paragraph end. Holding shift down generally forces a simple line break.
RE: Double spaced, IE 6 sp1
RE: Double spaced, IE 6 sp1
You'll find, of course, that any web page text separated by <p> tags has lines between. Using <br/> starts a new line, but you're still in the same paragraph.
Whatever way Excel does its html markup, you'll likely find that its something of the above.
RE: Double spaced, IE 6 sp1
If it IS ok to be equiv to a paragraph, but you just hate the HTML default of a paragraph putting a full line space between paragraphs, like I do, then change the style on your HTML.
put in a new style like this, in the HTML header, or in an included style sheet (this gives half a line space above and below):
<style text="text/css">
p {
margin-top: .5em;
margin-bottom: .5em;
}
</style>