1
我在使用CSS的DIV中垂直居中文本出現問題。我已經在SO和其他地方跟蹤了相關的答案,但似乎無法使其發揮作用。我簡單的情形是如何使用CSS在DIV中垂直居中文本?
<div class="outer">
<div class="header-title">
<span class="header-text">This is the title</span>
</div>
</div>
和
div.outer {
position: relative;
height: 200px;
border-style: solid;
border-width:1px;
}
div.header-title {
position: absolute;
font-size: 36px;
height: 100%; /* required */
color: green;
border-style: dashed;
border-width:1px;
}
span.header-text {
vertical-align: middle;
border-style: dotted;
border-width:1px;
}
但結果(在Safari中)離開 '頭文字' span
在div
的 '標題標題' 頂部:
你的例子爲中心。怎麼了? – Morpheus
烏爾提琴工作正常...你在找什麼? – UID
@Morpheus:嗯。那麼它能成爲我的瀏覽器嗎?我會張貼我在Safari中看到的帽子圖像。 – orome