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>