|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
CSS / Javascript Alpha Filter Opacity in IE Clipping Problem
I have a problem involving the ie only filter alpha().
My problem is that any <div> that is nested inside another becomes clipped, see example: Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css" media="screen">
#inBusinessHolder {
position: relative;
}
div.inBusinessBox {
display: block;
filter: alpha(opacity=80);
position: absolute;
width: 250px;
height: 80px;
border: 1px solid black;
background: #cff;
}
</style>
</head>
<body>
<div id="inBusinessHolder">
<div class="inBusinessBox" style="top:70px;left:100px;">text</div>
<div class="inBusinessBox" style="top:140px;left:110px;">text</div>
<div class="inBusinessBox" style="top:210px;left:120px;">
text
<div class="inBusinessBox" style="top:10px;left:-10px;background:#cf6 z-index:1000">text</div>
</div>
</div>
</body>
</html>
Anyone got any ideas? It's like the parent container is behaving like a clipping rectangle! |
|
#2
|
||||
|
||||
|
I'm still having no luck with this. Has anybody else had any experience with using these filters?
|
|
#3
|
||||
|
||||
|
http://forums.devshed.com/t104323/s.html - I had a similar problem before. Here are the answers that were supplied to me.
__________________
The Standards! CSS 2 - CSS 3 - w3c CSS Validator - XHTML 1.1 - HTML 4.01 - w3c (X)HTML Validator - ActionScript Reference Links! Bert's Door and Lock Service | Brandon Erik Bertelsen | TextPattern |
![]() |
| Viewing: Dev Shed Forums > Web Design > CSS Help > CSS / Javascript Alpha Filter Opacity in IE Clipping Problem |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|