Cell Height With Headline Tag

I want to use an <h4> tag within a table, but when I try it it puts in more vertical space between the headline and the text in the cell/row below than looks good. It appears that the <h4> tag is forcing a minimum height in its cell/row that is more than I want. Any way to shrink the cell/row down vertically around the headline?<br />
<br />
I've read other threads in this forum that say to use CSS instead of tables. As someone who is just learning HTML, is learning CSS much harder than HTML?<!--content-->Try: <h4 style="margin:0;">qwerty</h4><br />
<br />
Use CSS for layout, not tables. CSS is a little harder than HTML to learn but in the long term you will benefit from using it. W3 Schools (<!-- m --><a class="postlink" href="http://www.w3schools.com/css/default.asp">http://www.w3schools.com/css/default.asp</a><!-- m -->)<!--content-->Thank you, Fang, that helped. And thanks for the advice - I'll try CSS.<!--content-->
 
Back
Top