Answers for "how to stop moving text in html when you hover over it"

0

how to stop moving text in html when you hover over it

<head>
	<meta charset="utf-8">
	<title></title>
	<style type="text/css">
		marquee.move:hover {
			cursor: pointer;
		}
	</style>
</head>
<body>
<marquee class = "move" onmouseover = this.stop(); onmouseout = this.start();> hello</marquee>
Posted by: Guest on June-23-2021

Code answers related to "how to stop moving text in html when you hover over it"

Browse Popular Code Answers by Language