« Back to the HTML Forum

How do I set an image as the background??

Posted by Angie

posted

Forum: HTML Group

hehe please help


Report Topic

1 Reply

Reply by Knaspel

posted

<style>

body {

    background-image: url("here your link to png or gif");

    background-attachment: fixed;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}

</style>



Permalink Report Reply