曾经尝试更改页脚背景,但我做对了。每个标签都有一个颜色,但只有最后一个标签被更改(蓝色-#0000ff)。如何在Ionic 4中进行样式设置?
<template>
<ion-footer>
<ion-toolbar>
<ion-title v-if="loggedIn">
<a href="https://www.facebook.com/" target="_blank">
<ion-icon name="logo-facebook"></ion-icon>
</a>
<a href="https://www.instagram.com/" target="_blank">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</ion-title>
</ion-toolbar>
</ion-footer>
</template>
<script>
export default {
name: "pageFooter",
computed: {
loggedIn() {
return this.$store.getters.loggedIn;
}
}
};
</script>
<style lang="scss">
ion-footer {
background-color: #ff0000;
ion-toolbar {
background-color: #00FF00;
ion-title {
background-color: #0000ff;
a {
font-size: 25px;
color: #000;
}
}
}
}
</style>
这与“影子dom”概念有关,我还没有完全了解它。页脚的此DOM结构。
答案 0 :(得分:3)
Ionic 4使用Web组件,因此style components in Ionic 4的使用方法是使用Ionic提供的CSS variables。
根据您的情况,设置组件的--background
属性:
ion-footer {
--background: #ff0000;
}