【发布时间】:2015-02-10 17:41:33
【问题描述】:
我想使用一个与我的内容形成鲜明对比的背景,但图像底部的 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 -
看起来自动更正改变了它,已修复
-
当我在 CSS 中修复一个时,错过了 HTML 中的那个
标签: javascript jquery html css