我做了一個腳本whoch從我的網站獲取最新消息,但現在我有設計問題。我不知道爲什麼,但我的height:auto
不工作,我希望高度工作的寬度響應,但多數民衆贊成沒有發生。與第一個孩子的圖像的響應高度
也許我的想法不適用於height:auto
,因爲有一個更大的圖像。我試圖用max-& min-高度做這個,但那也行不通。
我需要做這個響應的所有屏幕,我知道媒體的標籤,但在媒體我想寫一些小的修正:)
有我的代碼,也許有人可以幫助我!?
HTML
<div id="news">
<div id="new_post" style="background-image:url(http://www.dailymobile.net/wp-content/uploads/2012/08/android-640x480-wallpaper-755.jpg)"><a href="" style="color:white">Lorem ipsum dolor sit amet</a></div>
<div id="new_post" style="background-image:url(http://www.dailymobile.net/wp-content/uploads/2012/08/android-640x480-wallpaper-690.jpg)"><a href="" style="color:white">Lorem ipsum dolor sit amet</a></div>
<div id="new_post" style="background-image:url(http://wfiles.brothersoft.com/bd/android_189070-640x480.jpg)"><a href="" style="color:white">Lorem ipsum dolor sit amet</a></div>
</div>
CSS
#new_post{
display: inline-block;
width: 50%;
height: auto;
margin:5px 5px 0 5px;
background-size: cover;
background-position: center center;
}
#new_post:first-child{
float: left;
width: 45%;
height: 205px;
margin: 5px 0 5px 5px;
}
感謝。
'高度:汽車;'獲取內容的價值,在這種情況下205px。如果要保持圖像寬高比,請使用'img'標記代替背景圖像。 – blonfu
@blonfu你認爲'div'我需要把'img'? –
另外,你不應該使用重複的ID。決不。即使它似乎工作! –