Computer Science, asked by dimplebothra091240, 8 months ago

how can you position image within text​

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
18

Using the coding we can perform at the function :-

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="utf-8">

<title>Placing Text Over an Image in CSS</title>

<style>

.box{

position: relative;

display: inline-block; /* Make the width of box same as image */

}

.box .text{

position: absolute;

z-index: 999;

margin: 0 auto;

left: 0;

right: 0;

top: 40%; /* Adjust this value to move the positioned div up and down */

text-align: center;

width: 60%; /* Set the width of the positioned div */

}

</style>

</head>

<body>

<div class="box">

<img src="images/kites.jpg" alt="Flying Kites">

<div class="text">

<h1>Flying Kites</h1>

</div>

</div>

</body>

</html>

______________________________________

Answered by sureshkumar2494881
10

Answer:

Explanation:

Using the coding we can perform at the function :-

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="utf-8">

<title>Placing Text Over an Image in CSS</title>

<style>

.box{

position: relative;

display: inline-block; /* Make the width of box same as image */

}

.box .text{

position: absolute;

z-index: 999;

margin: 0 auto;

left: 0;

right: 0;

top: 40%; /* Adjust this value to move the positioned div up and down */

text-align: center;

width: 60%; /* Set the width of the positioned div */

}

</style>

</head>

<body>

<div class="box">

<img src="images/kites.jpg" alt="Flying Kites">

<div class="text">

<h1>Flying Kites</h1>

</div>

</div>

</body>

</html>

Similar questions