1. 程式人生 > >css設定背景圖自適應填充整個螢幕

css設定背景圖自適應填充整個螢幕

直接看css樣式:

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