Computer Science, asked by vedanshkhandelwal25, 3 months ago

what helps us in placing the picture aur image at a desired place on the HTML document
a background-position
b background place
c background point
Answer as fast as you can​

Answers

Answered by arvind80blr
0

Answer:

Explanation:

There are 2 tags for that if you want to center your image use this- <style>

img {

 display: block;

 margin-left: auto;

 margin-right: auto;

}

</style>

and if you want to set an image to a specific position use-<IMG STYLE="position:absolute; TOP:_px; LEFT:_px; WIDTH:_px; HEIGHT:_px;" SRC="_">

Just fill in the px I've put a dash near the px to let you know that we have to fill it in to our desired position and in the SRC part you have to fill in the location of the image.

Similar questions