gpt4 book ai didi

php - 背景图片对齐

转载 作者:行者123 更新时间:2023-11-28 06:56:51 25 4
gpt4 key购买 nike

我的背景图片对齐方式似乎不对。底部似乎被切断了。如何让背景图片居中对齐。

body {
background-image: url('<?php echo $backgroundpic;?>');
background-repeat:no-repeat;
background-position:center;
background-attachment:fixed;
width: 100%;
height: 100%;
}

enter image description here

enter image description here

最佳答案

你需要做的就是添加背景大小并将其设置为覆盖

    body {
background-image: url('http://i.stack.imgur.com/eWFou.jpg');
background-repeat:no-repeat;
background-position:center;
background-size:cover;//ANSWER
background-attachment:fixed;
width: 100%;
height: 100%;
}

希望对你有帮助。

关于php - 背景图片对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33463570/

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