我将 Bootstrap 与 Rails 一起使用,但无法同时显示背景颜色和图像。我有一个自定义 CSS 样式表,我正在尝试将正文编辑为深色背景,右下角有一个小图像,如下所示:
body {
padding-top: 55px;
background-color: #2e2e2e;
background-attachment: fixed;
background-image: url('waves.png');
background-repeat: no-repeat;
background-position: right bottom;
}
问题是图像没有显示,只是背景。如果我删除“背景颜色”,它会显示出来并且看起来很完美,但我无法将它们放在一起。我知道我错过了一些小东西(可能也很愚蠢)。感谢帮助。