Jump to content

Transparent/Invisible Text in IE


FrOzeN

Recommended Posts

Is there a CSS property to make text invisible or completely transparent?
(Note the background I'm using is a fixed image, so making the text the same colour as it is useless.)

[code]<html>
<head>
  <title>example</title>
  <style type="text/css">
    .example {
      filter:alpha(opacity=0);
      -moz-opacity:0;
      opacity:0;
    }
  </style>
</head>
<body>

This text should be visible.<br />
<span class="example">This text should be invisible.</span>

</body>
</html>[/code]

The above works fine in firefox but not in Internet Explorer. Anyone know what I need to change to get it to work in both?

[EDIT] Nvm, I found the display:none and visibility:hidden properties.
Link to comment
https://forums.phpfreaks.com/topic/21634-transparentinvisible-text-in-ie/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.