What's new

Closed Ask po.. about html

Status
Not open for further replies.

Jmrie_

in memoriam 1995-2021
Joined
Aug 21, 2017
Posts
104,956
Solutions
1
Reaction
53,216
Points
27,061
Age
28
paano po malalagyan ng pic yung buong webpage ng browser ko kasi po nag code ako kaso di ko alam if masakto ba yung buong image dun sa webpage eto po kasi gusto ko

sana po my makatulong
 

Attachments

css . sample

body, html {
height: 100%;
}

.bg {
/* The image used */
background-image: url("img_girl.jpg");

/* Full height */
height: 100%;

/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
 
css . sample

body, html {
height: 100%;
}

.bg {
/* The image used */
background-image: url("img_girl.jpg");

/* Full height */
height: 100%;

/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
thanks po dito
 
gamit ka ng css ts lage mo sa withinn sa head tag mo

<style>
body{ background-image:url("insert image url here");
background-attachment:fixed;
background-position:center;
background-repeat:no-repeat;
}
</style>
 
Last edited:
Status
Not open for further replies.

Similar threads

Back
Top