I have a <div> for content and I am using <p> and <h4> with nothing defined for either of them in my stylesheet. There is a big gap between the two. I’d like them to be flush on top of one another without the big gap. How do I do that ? CSS?
<div id="content">
<h4>Asdf</h4><br />
<p>asdfjkl</p>
</div>
THANKS!
Yes, CSS would be the way to do it. If you want to do it just in one place you can put it inline like so:
You can do the same with the h4 to eliminate padding or margin. If you want to put it into a separate CSS file: