Computer Science, asked by vedanshkhandelwal25, 2 months ago

Ramit wants to place the logo of his school on the top left corner of the web page which property can be used to do so (HTML)
plzz help me day after tomorrow is my exam​

Answers

Answered by poojan
17

Ramit should use background-position: left top; property.

Explanation:

  • Styling the elements of webpages is the work of CSS and background-element is one in it.
  • It is used within <style></style> tags.
  • The position left top indicates the position in which the image needs to be placed as per this question. left center , left bottom , right top , right center , right bottom , center top , center center , center bottom are some other positions. or, we can just use %x %y to place the positions more accurately.
  • However, we can simple use

<img src="logo.png" style:"top:8px; left:10px, width:6%; position:absolute">

Learn more:

1. Create an html page with 7 separate lines in different colors.

https://brainly.in/question/35010731

2. Write HTML co-de to generate the following table

brainly.in/question/14751808

Answered by parisatija
2

Answer:

Ramit should use background position

Explanation:

Position : left top ; property

<img src =" top : 8px: left 10 px,

Width :6%, position :absolute" >

Similar questions