- UID
- 616
- 主题
- 回帖
- 0
- 精华
- 积分
- 25519
- 金币
- 枚
- 草籽
- 颗
- 鲜花
- 朵
- 注册时间
- 2023-11-16
- 最后登录
- 1970-1-1
|
本帖最后由 花简静 于 2024-7-25 16:40 编辑
#papa {
position: absolute;
margin: 230px 0 30px calc(50% - 790px);
width: 1400px;
height: 680px;
background: url('https://pic.imgdb.cn/item/669fa509d9c307b7e90f00dd.jpg') no-repeat center/cover;
}
看网页源码是这里的第一句出了问题,
凡哥教程原贴应该是
<style>
#mama {
position: relative; /* 帖子相对定位 */
margin: 230px 0 30px calc(50% - 730px); /* 外边距设置使得帖子处在合适的位置 */
width: 1280px;
height: 720px;
background: url('图片地址') no-repeat center / cover;
}
</style>
|
|