0
我在容器中有一個圖像和文字div
。定位圖像和文字
我想img
向左浮動和頁面的文本中心,但我不能這樣做。圖像和文字都有自己的div
s。
我怎麼能這樣做?
這裏是我的CSS和HTML:
#ImageDiv {
position: relative;
margin: auto;
width: 250px;
height: auto;
float: left;
}
#TextDiv {
position: relative;
width: auto;
height: auto;
text-align: center;
margin: auto;
float: left;
}
#ContainerDiv {
text-align: center;
width: auto;
height: 104px;
background-color: rgb(252, 251, 249);
position: relative;
border-radius: 5px;
border-style: inset;
border-width: 2px;
font-size: 22px;
color: rgb(46, 84, 0);
margin: auto;
}
<div id="ContainerDiv">
<div id="ImageDiv">
<img style="float: left; margin-right: 5px;" src="imagePath" alt="Alternate Text" />
</div>
<div id="TextDiv">
<h5>Some Text Goes Here...</h5>
</div>
</div>
設計圖像會幫她一個選項e但我懷疑你必須在兩個子div中的一個上使用絕對定位。 –
我試圖在imageDiv上使用絕對定位。但之後,我不能把文本放到頁面的中心,我不明白爲什麼 – Curious
轉到jsfiddle.net,在那裏複製你的代碼,保存它,然後回來 - 這將有助於看到你在 – robjez