Answers for "text on hover html"

1

how to show little description on hover html

<!-- Use Title For Anything You Want Mouseover Text On -->
<a title="Mouseover Text">This Will Have Mouseover Text</a>
<button title="Mouseover Text">This Will Have Mouseover Text</button>
<p title="Mouseover Text">This Will Have Mouseover Text</p>
<div title="Mouseover Text">This Will Have Mouseover Text</div>
...
Posted by: Guest on October-10-2020
0

html show text on hover

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title></title>
	<style type="text/css">
	.par{
		color: white;
		border: 1px solid black;
		width: 400px;
		
	}
	.par:hover {
		background-color: skyblue;
		transition: 1s;
		cursor: pointer;
	}
	</style>
	
</head>
<body>
<p class="par" ><font color="white">hello thank you for hovering</font></p>
</body>
</html>
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language