欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css设置背景图自适应填充整个屏幕

程序员文章站 2022-05-01 08:12:55
...

直接看css样式:

<style>
 body {
            background: url(img/background_login.jpg);
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
        }
</style>
相关标签: css html