+ 3
[Solved] The code isn't working... The text is not coming at top left side with respect to the image... Plz help
<!DOCTYPE html> <html> <head> <title>Page Title</title> <style> img { position:relative; left:20pt; } span { position:absolute; top:3px; left:0; } </style> </head> <body> <center> <img src="https://dl.dropbox.com/s/o35bpbzmo24jhe5/child-613199__480.jpg" height="200" width="90%" alt="" id="mainImg" style="filter: brightness(100%)" /> </center> <span>Hello World</span> </body> </html>
3 Respuestas
+ 2
Aditya answer does not position text "at left top side with respect to the image" but at right top without respect to the image ^^
To do what you want to achieve, you must add a 'relative' positioned wrapper to your image (wich should be centered by avoiding depecated <center> element) fiting exactly the image, and add your <span> text 'absolute' positioned inside it: all css deeply commented in the provided code ;)
https://code.sololearn.com/WPqJXFlR80jG/?ref=app
+ 1
visph Thank you for your answer... Finally, I can proceed with my project. (I will definately show you, when it gets completed)
0
I'm not sure..but are you looking for this?
https://code.sololearn.com/WCavPDbnW4Id/?ref=app