• Welcome to The Cave of Dragonflies forums, where the smallest bugs live alongside the strongest dragons.

    Guests are not able to post messages or even read certain areas of the forums. Now, that's boring, don't you think? Registration, on the other hand, is simple, completely free of charge, and does not require you to give out any personal information at all. As soon as you register, you can take part in some of the happy fun things at the forums such as posting messages, voting in polls, sending private messages to people and being told that this is where we drink tea and eat cod.

    Of course I'm not forcing you to do anything if you don't want to, but seriously, what have you got to lose? Five seconds of your life?

Problems with HTML

bulbasaur

Not quite e^(-(x-μ)²/(2σ²)) / (σ√(2π))
Code:
<html>
<head>
<title>BlahBlahBlah</title>
</head>
<body>
<p class="smallitalics">TextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextTextText</p>
</body>
</html>
Code:
.smallitalics {
font-size:x-small;
font-style:italic;
}

What is wrong with this? On IE7 it's okay, but on Firefox 3, there are some line breaks between the lines.
 
Do you mean when you look at the file in Firefox the part where Text repeats over and over there are un-programed breaks?

Most likely your text has created a line wider than the allowed content area, and Firefox automaticaly adds a line break so that it will fit.
 
I'm pretty sure that that is in the CSS coding, and I'm no good at that, but maybe you should try

break-style: some sort of CSS command here

thingy or something, I have no clue.
 
The property is line-height. You can set it to 1em or something like that.
 
Back
Top Bottom