
May 30th, 2001, 11:20 AM
|
|
Junior Member
|
|
Join Date: May 2001
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
CSS2/viz & NavCom v4.7 Mac problems
Trying to understand CSS2 visibility options. The following code works perfectly with IE 4.5+ on Mac, but when viewed with Netscape Communicator v4.75, both img are visible. Does that version of Communicator for the Mac not support CSS2, or is there something wrong with my code?
Thanks.
<head>
<title>viz test</title>
<style>
<!--
.gone {visibility: hidden}
.here {visibility: visible}
-->
</style>
</head>
<body>
<div style="color: red">test</div>
<img src="mA.gif" width="200" height="200" class="here" usemap="#bA">
<img src="bA.gif" width="200" height="200" class="gone" usemap="#bA">
<map name="bA">
<area shape="rect" coords="57,36,144,133" href="fillerA.html" >
<area shape="rect" coords="57,36,144,133" href="fillerA.html" >
</map>
</body>
</html>
|