我不知道为什么我有这个麻烦。请看截图:



我的CSS看起来像这样:

#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;
}


和继承人的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>


我不知道为什么这在CSS中如此困难,而其他一切都很容易。我尝试过边距,填充,边框,垂直对齐和现在的文本对齐。

为什么不起作用?

p.s:如果有帮助,<a id = "blog">标签的背景图像是此css:

#tabbase #blog {
   color : #000000;
   background-image : url('Tab.png');
}


当我使用span时,我得到以下信息:



当我在锚标签中添加text-align:center;时,我得到了:

https://dl.dropbox.com/u/107533178/Screen%20shot%202012-10-21%20at%202.18.38%20PM.png

最佳答案

您可以尝试以下样式:

#tabbase *
{
  text-align:center;
  vertical-align:middle;
}


它将DIV#tabbase的所有子级设置为水平和垂直居中。

10-05 21:09
查看更多