gpt4 book ai didi

angular - 为 Angular 6 中的所有组件设置通用背景

转载 作者:行者123 更新时间:2023-11-28 00:58:34 24 4
gpt4 key购买 nike

我试图在所有组件上设置背景(包括图像和颜色),并将其代码放入 styles.css 中。它出现在 AppComponent 主页面上,但呈现的任何其他组件出现在该页面之上,并用它们自己的白色背景覆盖背景。所以现在我将背景应用到每个组件并调整顶部位置。

有没有更简单、更有效的方法来做到这一点?

这是我在我的组件中应用的一些 CSS 代码。

a.component.css

.bg {
background: rgba(240, 240, 240, 1) url('src/assets/images/background.png');
background-repeat: no-repeat;
background-position: 60% -312px;
background-size: 2874px 818px;
}

b.component.css

.bg {
background: rgba(240, 240, 240, 1) url('src/assets/images/background.png');
background-repeat: no-repeat;
background-position: 60% -482px;
background-size: 2874px 818px;
}

最佳答案

如果您在这种情况下制作节点应用程序,您只需为 main.handlebars 文件设置背景即可。其他页面将从主布局 View 中呈现它。

看起来有点像这样:

<html>
<head>
<style>background-color: #color_id</style>
</head>
<body>
{{{body}}}
</body>
</html>

关于angular - 为 Angular 6 中的所有组件设置通用背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52811142/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com