Guest_imported
New member
- Jan 1, 1970
- 0
can somebody tell me a script i can use to have text underlined on mouseover? thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<style type="text/css">
.mOver{text-decoration:underline}
.mOut{text-decoration:none}
</style>
<body>
<h3 onMouseOver="this.className='mOver'" onMouseOut="this.className='mOut'">Mouseover this</h3>
</body>
</html>