|
When html, body marginTop = 0, the first <p> in IE starts on line one but in Firefox in line two. Could someone explain this to me? Does someone have a way to redefine in Firefox NOT to start it on line two?
<head>
.....
<title>BLAH BLAH BLAH</title>
<style type="text/css">
<!--
html, body {
margin-top: 0px;
}
-->
</style>
</head>
<body>
<body>
<p>This is on line ONE in IE but line TWO in Firefox</p>
</body>
.....
However, if you put any text in front, they both behave the same:
.....
<body>
Example 1 of a Responsive Interaction (one-on-one)
<p>This is okay. (It's on line THREE in both IE and Firefox.)</p>
</body>
.....
TIA,
Joel
Last edited by jpbatmpi; 07-31-2007 at 05:54 PM..
|