2. How com you position the images with in text
Answers
Answered by
1
Answer:
Answer: Use the CSS position property
<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;
More items...
Answered by
2
Explanation:
Answer: Use the CSS position property
<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
hope it helps you mate have a good day ❤️ ✌️
Similar questions