display on hover button code example

Example: on hover button appears

<html>
<head>
<link rel="stylesheet" type="text/css" href="button_style.css">
</head>
<body>
<div id="wrapper">
<div id="image_div">

<p class="img_wrapper">
<img src="images/image1.jpg">
<span><input type="button" value="PLAY"></span>
</p>

<p class="img_wrapper">
<img src="images/image2.jpg">
<span><input type="button" value="PAUSE"></span>
</p>

<p class="img_wrapper">
<img src="images/image3.jpg">
<span><input type="button" value="RESUME"></span>
</p>

</div>
</div>
</body>
</html>

Tags:

Misc Example