I cannot get my links to center on my divs. I understand that you could use line-height, but I dont not have fixed widths or heights on my divs they are all created based on the size of the screen. I have tried to vertical align with no success I'm sure I am just overlooking something my code is here in this fiddle for the example of the problem.
https://jsfiddle.net/6vwdah5e/
<section class="home-images">
<div class="photo-grid">
<a href="">
<h2>Item 1</h2>
</a>
</div>
<div class="photo-grid">
<a href="">
<h2>Item 2</h2>
</a>
</div>
<div class="photo-grid">
<a href="">
<h2>Item 3</h2>
</a>
</div>
<div class="photo-grid">
<a href="">
<h2>Item 4</h2>
</a>
</div>
<div class="photo-grid">
<a href="">
<h2>Item 5</h2>
</a>
</div>
<div class="photo-grid">
<a href="">
<h2>Item 6</h2>
</a>
</div>
</section>