我有一些css問題。這是我需要的。css位置:絕對問題
不管多少字標題有(例如:標題可能是What's new today?
,可能是hello world
)
它總是有一個背景線穿過整個格,字的背景是白色。 (這個詞應該是text-align:center;
,它的背景看起來像斷行)
這裏是我的代碼:
<style>
.ocell {
width:960px;
height:42px;
text-align:center;
padding: 20px 0 20px 0;
}
.wd {
margin: 0 auto;
background-col: white;
margin-left: -10px;
padding: 5px;
}
.line {
position: absolute;
border-bottom: solid 1px #999;
margin-top:-18px;
width: 960px;
}
</style>
<div class="ocell">
<div class="wd">Title</div>
<div class="line"></div>
</div>
也http://jsfiddle.net/zApLA/可能還可以使用background-image
而不是線。謝謝。
謝謝,在ff,chrome中工作正常,但在ie中沒有成功。 –
嗯,你可能需要使用條件CSS然後[鏈接](http://www.quirksmode.org/css/condcom.html)來調整它的IE瀏覽器。我們的PC目前正在用於測試,所以無法幫助您,但可以使用彩色邊框或背景進行測試,以便您可以清楚地看到div在哪裏。 –