I don't know why i'm having this trouble. Please have a look at the screenshot:

My css looks like this:
#tabbase {
display : inline-block;
width : 230px;
height : 173px;
border : 1px solid #3e3e3e;
background-color : #1b1b1b;
box-shadow : 0px 0px 4px 2px rgba(0, 0, 0, 0.4) inset;
margin-top : 6px;
}
#tabbase a {
display : block;
height : 43px;
text-decoration : none;
font-family : 'Nexa Bold';
font-size : 24px;
}
#tabbase a p {
text-align : center;
}
And heres the html:
<div id = "tabbase">
<a id = "blog" href = "#"> <p> Blog </p> </a>
<a class = "batl" href = "#"> <p> Home </p> </a>
<a class = "batl" href = "#"> <p> Contact </p> </a>
<a class = "batl" href = "#"> <p> Samples </p> </a>
</div>
I don't know why this is so difficult in css, everything else is easy. Iv'e tried margin, padding, border, vertical-align and now text-align.
Why isn't it working?
p.s: if it will help, the background image for the <a id = "blog"> tag is this css:
#tabbase #blog {
color : #000000;
background-image : url('Tab.png');
}
When I use span I get this:

When I add text-align:center; to the anchor tag I get this:
https://dl.dropbox.com/u/107533178/Screen%20shot%202012-10-21%20at%202.18.38%20PM.png
line-height: 43px;– CoryDanielson Oct 21 '12 at 11:21