I'm not really a fan of CSS, actually, I've never used it, so I'm not sure if this is a common problem.

I have the following code:
<style>
H1 {
font-family : Arial;
color : #FFFFFF;
text-align : left;
font-weight : bold;
font-size : 12px;
}
</style>

I am using it as a title in a table, like this:
--------------
|Title...........|
--------------
|..................|
|..................|
|-------------|

The problem is that, when I use this code (<h1>Title</h1)), the header part of my table seems to come down, as if a new paragraph had been added, so it ends up like:
--------------
|Title............|
|..................|
--------------
|..................|
|..................|
|-------------|

as if there were 2 rows.
Any help is appreciated. Thanks

BTW: the "......." represent open space, I had to use it so it would display right on this forum.