I have two lines that have space between them. Like the one below….
<h2> Something Something <h2>
<h4> Something here too </h4>
I want it to look like this:
<h2> Something Something <h2>
<h4> Something here too </h4>
The space is shown in the browser. I used the tags just to make it clear.

How to reduce the space within the orange rectangle ?
First, ensure that
paddingandmarginon your header elements is 0.After that, you can adjust their
line-heightvalues to get the amount of space you like. Example: http://jsbin.com/afivoq/4/editAnother option for you! You can apply a negative
margin-topon header elements which follow other header elements, like so:See the jsbin for updated example.