0
我的大腦被炸,所以我需要你們幫忙。簡單的垂直對齊問題div
我想在div中做垂直對齊。
我
HTML
<a href='#'>
<div class="div">
<div class="insideDiv">text here</div>
</div>
</a>
我的CSS
a {
color: #006699;
text-decoration: none;
font-size: 10pt;
border-width: 0;
position: relative
}
.div{
position: absolute;
background-color: red;
top: -75px;
left: 50px;
width: 100px;
height: 50px;
z-index: 1000;
padding: 8px;
}
.insideDiv{
background-color: white;
width: 100px;
height: 47px;
border: solid 1px grey;
font-weight: bold;
vertical-align: middle;
text-align: center;
}
好像text here
不能垂直對齊到中年,但水平對齊中心。任何人都可以幫我解決這個問題嗎?非常感謝!
可能重複的[垂直對齊文本在Div](http://stackoverflow.com/questions/2939914/vertically-align-text-in-a-div) – lifetimes 2013-05-02 00:19:24
我認爲,有'div'在'a'中給你錯誤,正好在wh3c – jhunlio 2013-05-02 00:32:54