我有一個背景我想使用它與我的內容形成鮮明對比,除了圖像底部的25%左右。我怎樣才能將25%的位置與內容的底部對齊,或者距離底部的距離?對內容的高度與頁面寬度不同,背景有大小蓋如何將div背景與其內容的底部對齊
HTML
<div class="firstPanel">content here</div>
CSS
.firstPanel {
background-image: URL("path-to-background");
background-position: 50% 70%;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
padding: 20px;
padding-bottom: 100px;
}
的選擇應該是'.first.panel' – j08691 2015-02-10 17:47:48
看起來像自動更正改變了它,固定 – 2015-02-10 18:00:01
可是仍然不對 – j08691 2015-02-10 18:02:22