0

我们在 app.scss 或任何地方设置 ion-content 的背景颜色。我怎样才能覆盖它?当我把它放到页面的 scss 中时:

#page-content {
    background-color: purple;
}

什么都没发生。(当然我在标签中添加了 id <ion-content padding id="page-content">:)

4

4 回答 4

1

试试 add !important

#page-content {
    background-color: purple!important;
}
于 2017-11-08T02:46:52.543 回答
1

在您的 Global scss 或本地 scss 中提到这一点

离子含量{--背景:白色}

于 2019-05-28T10:54:54.013 回答
1

这就是我改变背景的方式:

.scroll-content {
    background-color: white;
}
于 2017-11-08T09:52:01.970 回答
1

您应该在 RGB 代码中使用颜色。

background-color: #000000;
于 2017-11-07T18:46:41.667 回答