: Magnifier glass for text I've seen scripts that allow you to zoom images, i want to do the same for text, is this possible? Like onmouseover or hover it zooms images. i want it for text!
I've seen scripts that allow you to zoom images, i want to do the same for text, is this possible?
Like onmouseover or hover it zooms images. i want it for text! is it possible?
More posts by @Speyer207
1 Comments
Sorted by latest first Latest Oldest Best
In at least Firefox & Chrome you can make the text within a block bigger by using the :hover syntax. Apparently this only works for links in IE. Here's an example:
html:
<html>
<head>
<title>magnifying glass example</title>
<link rel="stylesheet" type="text/css" media="screen" href="mag.css" />
</head>
<body>
This text will not magnify.
<div class="magnifiable">
This text can be magnified.
</div>
</body>
</html>
mag.css:
body { color: black; }
div.magnifiable { color: red; }
div.magnifiable:hover { font-size: 200%; }
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2025 All Rights reserved.