I am trying to create a css pop up. The following code works.
However, if I change the "101%" (the font size) to "100%", the pop-up does not work. I just cannot figure out why.
Seaport
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<style type="text/css">
<!--
.linkspot a {display: block; text-align: center; font: bold 1em sans-serif;
padding: 5px 10px; margin: 0 0 1px; border-width: 0;
text-decoration: none; color: #00ffff;}
.linkspot a:hover {font-size: 101%; color: #ff0000; }
.linkspot a span {display: none;}
.linkspot a:hover span {display: block;
position: absolute; top: 180px; left: 0; width: 125px;
}
-->
</style>
</head>
<body>
<div id="msn" class="linkspot"
style="position: absolute; top: 81px; left: 50; width: 166px;
height: 700px; font: 16px Verdana, sans-serif; z-index: 100;">
<a href="void()">Yahoo.com<span>This is a dsecription for Yahoo.com.</span>
</a>
</div>
</body>
</html>
Seaport