java-script 関数を使用して CSS 属性を変更しようとしているので、このコードは firefox では機能しません / Safari/Chrome で機能します
<html>
<head>
<style type="text/css">
#hide {
display: none ;
}
</style>
</head>
<body>
<div onmouseover="document.getElementById('hide').style.display = 'compact';" onmouseout="document.getElementById('hide').style.display = 'none';" >
Move Over Mouse here
</div>
<div id="hide"> THIS IS HIDDEN TEXT</div>
</body>
</html>
何か案は ?!