I have a large paragraph. Within that there is a span tag with id for a particular word. On mouse hover the size of that particular word in para should increase. It can come above the other text and cover the contents in paragraph but it should not affect the alignment of other text.
Share
If you don’t object to a pure CSS solution, with its somewhat imperfect cross-browser compatibility you can use
:hover:afterandcontent: attr(title);to achieve this:Demo at JSBin.