Computer Science, asked by ruchi988948, 1 month ago

... property is used to align an image to the right or left of the text a. wrap b. float c. align​

Answers

Answered by Garv2703
3

Answer:

Float

Explanation:

Here are the steps to align an image to the right or left:-

An image is default placed to the left side.

To place the image to the right:-

<!DOCTYPE html>

<html>

<head>

<style>

img {

float: right;

width: 50%;

height: 200px;

</style>

</head>

<body>

<img src="mountain.jpg" alt="">

</body>

</html>

Hope it helps!

Similar questions