gpt4 book ai didi

html - ionic : image not showing over background image

转载 作者:太空宇宙 更新时间:2023-11-04 06:40:12 26 4
gpt4 key购买 nike

我有一张页面背景图片,我想在上面放另一张图片,但由于某种原因它没有显示

我的代码如下

.page-background {
background-image: url('../assets/imgs/Splash Screen Image.png');
background-size: cover;
position: relative;
z-index: 1;
}
.page-top-img {
position:absolute;
left:50px;
top: 50px;
z-index: 2;
}
<ion-content padding class="page-background">
<img src="assets/imgs/MasterCard.svg" alt="" class="page-top-img" />
</ion-content>

我目前只看到背景图片

最佳答案

如果此位置正确 ../assets/imgs/Splash Screen Image.png 然后删除文件名 Splash_Screen_Image.png 中的空格或检查您的位置图像是否可用不是?并在使用相对位置和绝对位置时删除 z-index。

<ion-content padding class="page-background">
<img src="assets/imgs/MasterCard.svg" alt="" class="page-top-img" />
</ion-content>

.page-background{
background-image: url('../assets/imgs/Splash_Screen_Image.png');
background-size: cover;
position : relative;
}
.page-top-img{
position:absolute;
left:50px;
top: 50px;
width:100%; /* set your width size */
height:100px; /* set your height size */
}

关于html - ionic : image not showing over background image,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53863841/

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