Home > AI > Language > CSS >

background-image

Example 1: fixed background image

<style>
    body {
        background: url(https://unsplash.it/200/200/?image=876) no-repeat center center fixed;
    }
</style>

Leave a Reply