gpt4 book ai didi

html - 全屏背景

转载 作者:太空宇宙 更新时间:2023-11-03 21:53:05 25 4
gpt4 key购买 nike

我希望我的背景图片完全填满浏览器窗口。我试过 CSS

body {background:url(bg.jpg) fixed no-repeat 100%}

但它没有覆盖整个屏幕。

最佳答案

css: 
background-size: cover;

我猜是你要找的。对于交叉 borswer 支持试试这个:CSS:

 html { 
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

来源: css tricks full page background

关于html - 全屏背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15949750/

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